0
我試圖在這裏單獨實現這個問題的代碼 Android: install .apk programmatically, 其中涉及如何實現我想要在Android上與Java的東西。 我想用monodroid來做。如何以編程方式安裝apk與monodroid
任何人任何想法如何我不斷收到錯誤...
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);
什麼是錯誤信息? –