如何从SD卡安装应用程序?

时间:2016-12-26 02:35:44

标签: android root su

我的代码应该安装我的应用程序名为“xadb-build.apk”,但它什么都不做,没有错误,没有强制关闭,我只看到授予toast的超级用户权限。这是我的方法

  gender = document.querySelector(".gender:checked").value;

我从here获得了此代码(请参阅palak的回答)

1 个答案:

答案 0 :(得分:0)

Android支持此方法。

File apkFile = new File({path to APK});
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
        startActivity(intent);

不推荐使用您的方法。