- List all of your users (to find the number of the work profile (in the example the 11 is the work profile):
$ adb shell pm list users
Users:
UserInfo{0:Propietario:13} running
UserInfo{11:Perfil de trabajo:30} running
- Copy the APK and then install it for that user with:
adb push app-debug.apk /data/local/tmp
adb shell pm install -t --user 11 /data/local/tmp/app-debug.apk
Top comments (0)