Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.05 KB

ADB Commands for TextNow App. Developed by ATik HaSan ❤️

Download the TextNow App

Run the following command using adb shell to download the TextNow app:

adb shell am start -a android.intent.action.VIEW -d "https://play.google.com/store/apps/details?id=com.enflick.android.TextNow"

If you're using Sauce Labs, simply run this command:

am start -a android.intent.action.VIEW -d "https://play.google.com/store/apps/details?id=com.enflick.android.TextNow"

Clear Cache for TextNow App

To clear the cache of the TextNow app, run the following command using adb shell:

adb shell pm clear com.enflick.android.TextNow

If you're using Sauce Labs, simply run this command:

pm clear com.enflick.android.TextNow

Force Stop for TextNow App

To force-stop of the TextNow app, run the following command using adb shell:

adb shell am force-stop com.enflick.android.TextNow

If you're using Sauce Labs, simply run this command:

am force-stop com.enflick.android.TextNow