This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dir=$(dirname $0) | |
package=com.package.app | |
remote=/data/data/$package/cache/your_path/ | |
webcache=/data/data/$package/app_webview/ | |
cd $dir | |
adb shell am force-stop $package | |
#adb shell pm clear $package | |
adb shell rm -r $webcache | |
adb shell mkdir -p $remote | |
for f in *.js *.css *.html *.png; do | |
adb push $f $remote; | |
done; | |
adb shell am start -a android.intent.action.VIEW -d your-intent-scheme://home |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment