在 Android 中,如果您需要将文件拉到笔记本电脑上,您需要运行:
$ adb pull "/data/data/<packagename>/<file-name>" “<destination>”
但是对于 Android Enterprise 下的 Android Work Profile 中的应用程序,您如何从应用程序沙箱中提取文件以进行自动化调试。在 UIAutomator 运行期间是否有任何其他位置可以将其保存到可以拉出的位置?
我知道可启动性:https ://developer.android.com/work/managed-profiles#testing_tips
adb shell am start --user 10 \
-n "com.example.myapp/com.example.myapp.testactivity" \
-a android.intent.action.MAIN \
-c android.intent.category.LAUNCHER