用来清缓存重启 webview
#!/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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。