Questions tagged «user-data»

7
清除android应用程序用户数据
使用adb shell清除应用程序数据 adb shell pm clear com.android.browser 但是当从应用程序执行该命令时 String deleteCmd = "pm clear com.android.browser"; Runtime runtime = Runtime.getRuntime(); try { runtime.exec(deleteCmd); } catch (IOException e) { e.printStackTrace(); } 问题: 尽管我已授予以下权限,但无法清除用户数据也不会给出任何异常。 <uses-permission android:name="android.permission.CLEAR_APP_USER_DATA"/> 题: 如何使用adb shell清除应用程序数据?
108 android  adb  user-data 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.