发布于 2016-10-04 09:26:37
是的,你能做到的。你只需要让它看起来像是应用程序来自Play Store (除了测试目的之外,不要做任何事情)。
为应用程序创建一个apk,然后转到该文件夹并将其推送到手机上。接下来,使用正确的签名(com.android.vending)安装它,然后在安装后从手机中移除apk。
像这样的东西将会起作用:
adb push mobile-debug.apk /sdcard/app.apk
adb shell pm install -i "com.android.vending" -r /sdcard/app.apk
adb shell rm /sdcard/app.apk祝你好运!
https://stackoverflow.com/questions/39265358
复制相似问题