permission denial : android.permission.INTERACT_ACROSS_USERS_FULL

在android5.0上運行 Runtime.getRuntime("am start -n com.android.settings/.Settings") 時,拋出異常:

D/AndroidRuntime( 8331): Calling main entry com.android.commands.am.Am

W/ActivityManager(  750): Permission Denial: startActivity asks to run as user -2 but is calling from user 0; this requires android.permission.INTERACT_ACROSS_USERS_FULL

 

這是因爲5.0手機是多用戶,adb shell am 的用戶是su和程序的用戶不是同一個,解決方案:

add --user 0 option to your am command.

The "user" in the command-line refers to Jelly Bean's user profiles, not to Unix user IDs. When you're using a terminal session, you need to specify which user profile the app should be running in.

參考

http://android.stackexchange.com/questions/54140/running-am-commands-in-terminal-without-using-su

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章