Mở một URL bằng browser (android.intent.action.VIEW)
Mở một URL cài App bằng Google Play (com.android.vending)
Mở một cái gì đó bằng trình duyệt nào đó
Ví dụ:
Muốn mở nhiều hơn? Thủ thuật chi tiết tại đây
adb shell am start -a android.intent.action.VIEW -d
Mở một URL cài App bằng Google Play (com.android.vending)
adb shell am start -n com.android.vending/com.google.android.finsky.activities.LaunchUrlHandlerActivity
Mở một cái gì đó bằng trình duyệt nào đó
adb shell monkey -p com.package.name -c android.intent.category.LAUNCHER 1
adb shell am start -a android.intent.action.VIEW -n [application/intent] -d
adb shell am start -n [com.your.packages/com.your.packages.Activity]
adb shell am start PACKAGE_NAME/ACTIVITY_IN_PACKAGE adb shell am start PACKAGE_NAME/FULLY_QUALIFIED_ACTIVITY
#example adb shell am start -n com.growingwiththeweb.example/.MainActivity
adb shell am start -n com.growingwiththeweb.example/com.growingwiththeweb.example.MainActivity
Ví dụ:
adb shell am start -a android.intent.action.VIEW -n org.mozilla.fennec/.App -d http://yoloteam.org
Muốn mở nhiều hơn? Thủ thuật chi tiết tại đây