私は、カスタムAndroidアプリケーションから動的にダウンロードされたapkをプログラムでインストールできるかどうかを知りたいと思っています。
Playストアリンクまたはインストールプロンプトを簡単に起動できます。
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.parse("content:///path/to/your.apk"),
"application/vnd.Android.package-archive");
startActivity(promptInstall);
または
Intent goToMarket = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("https://play.google.com/store/apps/details?id=com.package.name"));
startActivity(goToMarket);
ただし、ユーザーのexplicit permission;なしでは.apksをインストールできません。デバイスとプログラムがルート化されている場合を除きます。
File file = new File(dir, "App.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.Android.package-archive");
startActivity(intent);
私は同じ問題を抱えており、いくつかの試みの後、このようにうまくいきました。理由はわかりませんが、データとタイプを個別に設定すると、意図が狂いました。
この質問に提供される解決策は、すべて23以下のtargetSdkVersion
に適用されます。ただし、Android N、つまりAPIレベル24以上の場合、次の例外で機能せず、クラッシュします。
Android.os.FileUriExposedException: file:///storage/emulated/0/... exposed beyond app through Intent.getData()
これは、Android 24から始まって、ダウンロードしたファイルのアドレスを指定するUri
が変更されたためです。たとえば、パッケージ名appName.apk
でアプリのプライマリ外部ファイルシステムに保存されているcom.example.test
という名前のインストールファイルは次のようになります。
file:///storage/emulated/0/Android/data/com.example.test/files/appName.apk
API 23
以下の場合、
content://com.example.test.authorityStr/pathName/Android/data/com.example.test/files/appName.apk
API 24
以上の場合。
これについての詳細は here にありますが、これについては説明しません。
24
以上のtargetSdkVersion
の質問に答えるには、次の手順に従う必要があります。AndroidManifest.xmlに次を追加します。
<application
Android:allowBackup="true"
Android:label="@string/app_name">
<provider
Android:name="Android.support.v4.content.FileProvider"
Android:authorities="${applicationId}.authorityStr"
Android:exported="false"
Android:grantUriPermissions="true">
<meta-data
Android:name="Android.support.FILE_PROVIDER_PATHS"
Android:resource="@xml/paths"/>
</provider>
</application>
2.次のpaths.xml
ファイルを、src、mainのxml
上のres
フォルダーに追加します。
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:Android="http://schemas.Android.com/apk/res/Android">
<external-path
name="pathName"
path="pathValue"/>
</paths>
pathName
は、上記の例示的なコンテンツURIの例で示されているものであり、pathValue
はシステム上の実際のパスです。 「。」を付けるのは良い考えです。余分なサブディレクトリを追加したくない場合は、上記のpathValueの(引用符なし)。
次のコードを記述して、appName.apk
という名前のapkをプライマリ外部ファイルシステムにインストールします。
File directory = context.getExternalFilesDir(null);
File file = new File(directory, fileName);
Uri fileUri = Uri.fromFile(file);
if (Build.VERSION.SDK_INT >= 24) {
fileUri = FileProvider.getUriForFile(context, context.getPackageName(),
file);
}
Intent intent = new Intent(Intent.ACTION_VIEW, fileUri);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
intent.setDataAndType(fileUri, "application/vnd.Android" + ".package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent);
activity.finish();
外部ファイルシステム上の独自のアプリのプライベートディレクトリに書き込む場合も、許可は必要ありません。
AutoUpdateライブラリを作成しました here ここで上記を使用しました。
さて、私はさらに掘り下げて、Android SourceからPackageInstallerアプリケーションのソースを見つけました。
https://github.com/Android/platform_packages_apps_packageinstaller
マニフェストから、許可が必要であることがわかりました:
<uses-permission Android:name="Android.permission.INSTALL_PACKAGES" />
そして、インストールの実際のプロセスは確認後に行われます
Intent newIntent = new Intent();
newIntent.putExtra(PackageUtil.INTENT_ATTR_APPLICATION_INFO, mPkgInfo.applicationInfo);
newIntent.setData(mPackageURI);
newIntent.setClass(this, InstallAppProgress.class);
String installerPackageName = getIntent().getStringExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME);
if (installerPackageName != null) {
newIntent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME, installerPackageName);
}
startActivity(newIntent);
私はただ、apkファイルがアプリの「データ」ディレクトリに保存されたという事実と、その方法でインストールできるようにapkファイルのアクセス許可を世界中で読み取り可能に変更する必要があるという事実を共有したいだけです。 「解析エラー:パッケージの解析に問題があります」をスローしていました。だから、@ Horacemanのソリューションを使用して:
File file = new File(dir, "App.apk");
file.setReadable(true, false);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.Android.package-archive");
startActivity(intent);
次の手順を実行します:
1-以下をAndroidManifest.xml
に追加します。
<provider
Android:name="Android.support.v4.content.FileProvider"
Android:authorities="${applicationId}.provider"
Android:exported="false"
Android:grantUriPermissions="true">
<meta-data
Android:name="Android.support.FILE_PROVIDER_PATHS"
Android:resource="@xml/paths"/>
</provider>
2-srcのresにあるxmlフォルダーに次のpath.xmlファイルを追加します(存在しない場合は作成します)。
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:Android="http://schemas.Android.com/apk/res/Android">
<external-path
name="external_file"
path="."/>
</paths>
PathNameは、上記の例示的なコンテンツURIの例に示されているもので、pathValueはシステム上の実際のパスです。 「。」を付けることをお勧めします。追加のサブディレクトリを追加しない場合は、上記のpathValueを使用します。
-次のコードを記述して、Apkファイルを実行します。
File file = "path of yor apk file";
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Uri fileUri = FileProvider.getUriForFile(getBaseContext(), getApplicationContext().getPackageName() + ".provider", file);
Intent intent = new Intent(Intent.ACTION_VIEW, fileUri);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
intent.setDataAndType(fileUri, "application/vnd.Android" + ".package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.Android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
はい、可能です。ただし、そのためには、検証されていないソースをインストールするための電話が必要です。たとえば、slideMeはそれを行います。あなたができる最善のことは、アプリケーションが存在するかどうかを確認し、Android Marketのインテントを送信することだと思います。 Android MarketのURLスキームを使用する必要があります。
market://details?id=package.name
アクティビティの開始方法は正確にはわかりませんが、そのようなURLでアクティビティを開始する場合。 Androidマーケットが開かれ、アプリをインストールする選択肢が与えられます。
DownloadManager
を使用してダウンロードを開始する場合は、必ず外部の場所に保存してください。 setDestinationInExternalFilesDir(c, null, "<your name here>).apk";
。パッケージアーカイブタイプのインテントは、内部ロケーションへのダウンロードで使用されるcontent:
スキームを好まないようですが、file:
を好むようです。 (アプリがapkを解析しないため、file:
urlになりますが、内部パスをFileオブジェクトにラップしてからパスを取得しようとしても機能しません。外部である必要があります。)
例:
int uriIndex = cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_URI);
String downloadedPackageUriString = cursor.getString(uriIndex);
File mFile = new File(Uri.parse(downloadedPackageUriString).getPath());
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.fromFile(mFile), "application/vnd.Android.package-archive")
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
appContext.startActivity(promptInstall);
受信アプリをハードコーディングする必要のない別のソリューションで、したがってより安全です。
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData( Uri.fromFile(new File(pathToApk)) );
startActivity(intent);
これは他の人を大いに助けることができます!
最初:
private static final String APP_DIR = Environment.getExternalStorageDirectory().getAbsolutePath() + "/MyAppFolderInStorage/";
private void install() {
File file = new File(APP_DIR + fileName);
if (file.exists()) {
Intent intent = new Intent(Intent.ACTION_VIEW);
String type = "application/vnd.Android.package-archive";
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Uri downloadedApk = FileProvider.getUriForFile(getContext(), "ir.greencode", file);
intent.setDataAndType(downloadedApk, type);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
} else {
intent.setDataAndType(Uri.fromFile(file), type);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}
getContext().startActivity(intent);
} else {
Toast.makeText(getContext(), "ّFile not found!", Toast.LENGTH_SHORT).show();
}
}
Second:Android 7以降の場合、以下のようなマニフェストでプロバイダーを定義する必要があります!
<provider
Android:name="Android.support.v4.content.FileProvider"
Android:authorities="ir.greencode"
Android:exported="false"
Android:grantUriPermissions="true">
<meta-data
Android:name="Android.support.FILE_PROVIDER_PATHS"
Android:resource="@xml/paths" />
</provider>
3番目:以下のようにres/xmlフォルダにpath.xmlを定義してください!何か他の方法に変更したい場合は、内部ストレージにこのpathを使用しています。次のリンクにアクセスできます。 FileProvider
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:Android="http://schemas.Android.com/apk/res/Android">
<external-path name="your_folder_name" path="MyAppFolderInStorage/"/>
</paths>
Forth:この許可をマニフェストに追加する必要があります:
<uses-permission Android:name="Android.permission.REQUEST_INSTALL_PACKAGES"/>
プロバイダーの権限が同じであることを確認してください!
これを試して
String filePath = cursor.getString(cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_FILENAME));
String title = filePath.substring( filePath.lastIndexOf('/')+1, filePath.length() );
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(filePath)), "application/vnd.Android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // without this flag Android returned a intent error!
MainActivity.this.startActivity(intent);
最初に次の行をAndroidManifest.xmlに追加します。
<uses-permission Android:name="Android.permission.INSTALL_PACKAGES"
tools:ignore="ProtectedPermissions" />
次に、次のコードを使用してapkをインストールします。
File sdCard = Environment.getExternalStorageDirectory();
String fileStr = sdCard.getAbsolutePath() + "/MyApp";// + "app-release.apk";
File file = new File(fileStr, "TaghvimShamsi.apk");
Intent promptInstall = new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.fromFile(file),
"application/vnd.Android.package-archive");
startActivity(promptInstall);
許可をリクエストすることを忘れないでください:
Android.Manifest.permission.WRITE_EXTERNAL_STORAGE
Android.Manifest.permission.READ_EXTERNAL_STORAGE
AndroidManifest.xmlにプロバイダーとアクセス許可を追加します。
<uses-permission Android:name="Android.permission.REQUEST_INSTALL_PACKAGES"/>
...
<application>
...
<provider
Android:name="Android.support.v4.content.FileProvider"
Android:authorities="${applicationId}"
Android:exported="false"
Android:grantUriPermissions="true">
<meta-data
Android:name="Android.support.FILE_PROVIDER_PATHS"
Android:resource="@xml/provider_paths"/>
</provider>
</application>
XMLファイルプロバイダーres/xml/provider_paths.xmlを作成します
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:Android="http://schemas.Android.com/apk/res/Android">
<external-path
name="external"
path="." />
<external-files-path
name="external_files"
path="." />
<cache-path
name="cache"
path="." />
<external-cache-path
name="external_cache"
path="." />
<files-path
name="files"
path="." />
</paths>
以下のサンプルコードを使用します。
public class InstallManagerApk extends AppCompatActivity {
static final String NAME_APK_FILE = "some.apk";
public static final int REQUEST_INSTALL = 0;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// required permission:
// Android.Manifest.permission.WRITE_EXTERNAL_STORAGE
// Android.Manifest.permission.READ_EXTERNAL_STORAGE
installApk();
}
...
/**
* Install APK File
*/
private void installApk() {
try {
File filePath = Environment.getExternalStorageDirectory();// path to file apk
File file = new File(filePath, LoadManagerApkFile.NAME_APK_FILE);
Uri uri = getApkUri( file.getPath() ); // get Uri for each SDK Android
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData( uri );
intent.setFlags( Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_NEW_TASK );
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
intent.putExtra(Intent.EXTRA_RETURN_RESULT, true);
intent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME, getApplicationInfo().packageName);
if ( getPackageManager().queryIntentActivities(intent, 0 ) != null ) {// checked on start Activity
startActivityForResult(intent, REQUEST_INSTALL);
} else {
throw new Exception("don`t start Activity.");
}
} catch ( Exception e ) {
Log.i(TAG + ":InstallApk", "Failed installl APK file", e);
Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_LONG)
.show();
}
}
/**
* Returns a Uri pointing to the APK to install.
*/
private Uri getApkUri(String path) {
// Before N, a MODE_WORLD_READABLE file could be passed via the ACTION_INSTALL_PACKAGE
// Intent. Since N, MODE_WORLD_READABLE files are forbidden, and a FileProvider is
// recommended.
boolean useFileProvider = Build.VERSION.SDK_INT >= Build.VERSION_CODES.N;
String tempFilename = "tmp.apk";
byte[] buffer = new byte[16384];
int fileMode = useFileProvider ? Context.MODE_PRIVATE : Context.MODE_WORLD_READABLE;
try (InputStream is = new FileInputStream(new File(path));
FileOutputStream fout = openFileOutput(tempFilename, fileMode)) {
int n;
while ((n = is.read(buffer)) >= 0) {
fout.write(buffer, 0, n);
}
} catch (IOException e) {
Log.i(TAG + ":getApkUri", "Failed to write temporary APK file", e);
}
if (useFileProvider) {
File toInstall = new File(this.getFilesDir(), tempFilename);
return FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID, toInstall);
} else {
return Uri.fromFile(getFileStreamPath(tempFilename));
}
}
/**
* Listener event on installation APK file
*/
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode == REQUEST_INSTALL) {
if (resultCode == Activity.RESULT_OK) {
Toast.makeText(this,"Install succeeded!", Toast.LENGTH_SHORT).show();
} else if (resultCode == Activity.RESULT_CANCELED) {
Toast.makeText(this,"Install canceled!", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this,"Install Failed!", Toast.LENGTH_SHORT).show();
}
}
}
...
}
pdateNode は、別のアプリ内からAPKパッケージをインストールするAndroidのAPIを提供します。
Updateをオンラインで定義し、APIをアプリに統合することができます-それだけです。
現在、APIはベータ状態ですが、既にいくつかのテストを自分で行うことができます。
それ以外にも、UpdateNodeはシステムを介してメッセージを表示します-ユーザーに重要なことを伝えたい場合に非常に便利です。
私はクライアント開発チームの一員であり、少なくとも自分のAndroidアプリでメッセージ機能を使用しています。
これを試してください-マニフェストに書いてください:
uses-permission Android:name="Android.permission.INSTALL_PACKAGES"
tools:ignore="ProtectedPermissions"
コードを書く:
File sdCard = Environment.getExternalStorageDirectory();
String fileStr = sdCard.getAbsolutePath() + "/Download";// + "app-release.apk";
File file = new File(fileStr, "app-release.apk");
Intent promptInstall = new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.fromFile(file),
"application/vnd.Android.package-archive");
startActivity(promptInstall);