跬步集

Android 调试指定用户

2018-07-12  本文已影响3人  几千里也

To get the list of all the users

adb shell dumpsys user
// or
adb shell pm list users

Create new user

adb shell pm create-user User_Name

To switch between users

adb shell am switch-user User_ID

For example - Specify which user to run as

adb install --user 10 -r '/the/apk/path/debug.apk'
adb shell am start --user 10 -n the.package.name/.MainActivity
上一篇下一篇

猜你喜欢

热点阅读