28 lines
1004 B
Bash
Executable File
28 lines
1004 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make sure device is connected
|
|
adb devices
|
|
|
|
echo "إرسال إشعارات تجريبية..."
|
|
|
|
# Uber mock notification
|
|
adb shell cmd notification post -t "Uber" -S "bigtext" "New Ride" "السعر: 2.50 JOD. الوقت: 5 min." com.ubercab.driver
|
|
sleep 2
|
|
|
|
# Careem mock notification
|
|
adb shell cmd notification post -t "Careem" -S "bigtext" "طلب جديد" "سعر الرحلة 3.0 دينار أردني. يبعد 8 دقائق." com.careem.adma
|
|
sleep 2
|
|
|
|
# Jeeny mock notification
|
|
adb shell cmd notification post -t "Jeeny" -S "bigtext" "طلب جديد" "السعر: 1.20 دينار. المسافة: 1 كم" me.com.easytaxista
|
|
sleep 2
|
|
|
|
# Petra Ride mock notification
|
|
adb shell cmd notification post -t "Petra Ride" -S "bigtext" "تنبيه" "1.00 JOD" com.PetraRide_Captain
|
|
sleep 2
|
|
|
|
# TaxiF mock notification
|
|
adb shell cmd notification post -t "TaxiF" -S "bigtext" "رحلة جديدة" "السعر: 2 JOD" com.taxif.driver
|
|
|
|
echo "تم إرسال الإشعارات التجريبية."
|