This commit is contained in:
Hamza-Ayed
2026-05-14 18:24:32 +03:00
commit 8272065938
646 changed files with 50360 additions and 0 deletions

22
test_notifications.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Make sure device is connected
adb devices
echo "إرسال إشعار أوبر تجريبي..."
# Uber mock notification
adb shell cmd notification post -t "Uber" -S "bigtext" "1.50 JOD" "Pick up: 2 min, 0.5 km. Drop-off: 10 min. 1.50 JOD. Cash" com.ubercab.driver
sleep 2
echo "إرسال إشعار كريم تجريبي..."
# Careem mock notification
adb shell cmd notification post -t "Careem" -S "bigtext" "New Ride" "Pickup in 3 mins. Expected fare JOD 2.00" com.careem.adma
sleep 2
echo "إرسال إشعار جيني تجريبي..."
# Jeeny mock notification
adb shell cmd notification post -t "Jeeny" -S "bigtext" "طلب جديد" "السعر: 1.20 دينار. المسافة: 1 كم" me.jeeny.driver
echo "تم إرسال الإشعارات التجريبية."