SDカードに保存されたapkファイルをインストールする際に次のようなコードを実行しようとしています: "android.content.ActivityNotFoundException:明示的なアクティビティクラス{com.android.packageinstaller/.PackageInstallerActivity} "コードでは、file
がapkファイルのSDカードパスを表しています。apk programitacallyのインストール中にエラーが発生しました
Intent resultIntent = new Intent(android.content.Intent.ACTION_VIEW);
resultIntent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-archive");
resultIntent.setClassName("com.android.packageinstaller", ".PackageInstallerActivity");
startActivity(resultIntent);
これを管理する方法を教えてください。
おかげ ジェイブド・カーン
'file'は有効ですか? – dbm