Silent installation on Android devices

后端 未结 3 1962
抹茶落季
抹茶落季 2020-12-02 19:12

I\'ve accepted for a while now that it\'s impossible to silently install an application on Android - that is, to have a program install an application bundled as an APK with

3条回答
  •  被撕碎了的回忆
    2020-12-02 19:14

    You can ( in a very hackish way ) install apps silently using adb. You have to enable USB Debugging, but just push the APK to /data/app. ie:

    adb push MyApp.apk /data/app

    • or -

    adb install MyApp.apk (cleaner way)

    The second command MAY prompt for an installation, I don't remember off the top of my head.

提交回复
热议问题