从 SD 卡安装 APK(FileProvider 的问题)
Installing APK from SD card (problem with FileProvider)
我的文件提供程序有问题。我已成功将 apk 下载到我的 phone。 apk 存储在 SD 或内部 phone 存储空间中。
(SD Card)
/storage/3565-6665/Android/data/com.mytest/files/My App Name/Download/app-v1.3.apk
(internal storage)
/storage/emulated/0/Android/data/com.mytest/files/My App Name/Download/app-v1.3.apk
问题是从内部存储中找到并可以安装文件,但在 SD 卡上它不起作用并抛出以下异常:
Failed to find configured root that contains
/storage/3565-6665/Android/data/com.mytest/files/My App
Name/Download/app-v1.3.apk
我的 path.xml 看起来如下:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." /></paths>
清单中的FileProvider
:
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/path" />
</provider>
我正在通过以下方式安装 apk:
File file = my_file;
Uri fileUri = Uri.fromFile(file); //for Build.VERSION.SDK_INT <= 24
if (Build.VERSION.SDK_INT >= 24) {
fileUri = FileProvider.getUriForFile(getApplication(), BuildConfig.APPLICATION_ID + ".provider", file);
}
Intent promptInstall = new Intent(Intent.ACTION_VIEW, fileUri);
promptInstall.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
promptInstall.setDataAndType(fileUri, "application/vnd.android.package-archive");
promptInstall.setFlags( Intent.FLAG_ACTIVITY_NEW_TASK);
promptInstall.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(promptInstall);
FileProvider
不支持移动存储。或者:
始终下载到您所谓的“内部存储”(但从 Android SDK 的角度来看是 external storage)
让用户使用 ACTION_OPEN_DOCUMENT
选择可移动存储上的 APK,然后使用从中获得的 Uri
作为 ACTION_VIEW
Intent
创建您自己的 ContentProvider
可以从您的应用程序的可移动存储目录中提供文件,然后使用 ContentProvider
而不是 FileProvider
作为您的 Uri
切换到使用 PackageInstaller
,因为这绕过了对任何类型 ContentProvider
的需要,并且它解决了使用 ACTION_VIEW
进行应用程序安装的事实已弃用 Android 10+
我的文件提供程序有问题。我已成功将 apk 下载到我的 phone。 apk 存储在 SD 或内部 phone 存储空间中。
(SD Card)
/storage/3565-6665/Android/data/com.mytest/files/My App Name/Download/app-v1.3.apk
(internal storage)
/storage/emulated/0/Android/data/com.mytest/files/My App Name/Download/app-v1.3.apk
问题是从内部存储中找到并可以安装文件,但在 SD 卡上它不起作用并抛出以下异常:
Failed to find configured root that contains /storage/3565-6665/Android/data/com.mytest/files/My App Name/Download/app-v1.3.apk
我的 path.xml 看起来如下:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." /></paths>
清单中的FileProvider
:
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/path" />
</provider>
我正在通过以下方式安装 apk:
File file = my_file;
Uri fileUri = Uri.fromFile(file); //for Build.VERSION.SDK_INT <= 24
if (Build.VERSION.SDK_INT >= 24) {
fileUri = FileProvider.getUriForFile(getApplication(), BuildConfig.APPLICATION_ID + ".provider", file);
}
Intent promptInstall = new Intent(Intent.ACTION_VIEW, fileUri);
promptInstall.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
promptInstall.setDataAndType(fileUri, "application/vnd.android.package-archive");
promptInstall.setFlags( Intent.FLAG_ACTIVITY_NEW_TASK);
promptInstall.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(promptInstall);
FileProvider
不支持移动存储。或者:
始终下载到您所谓的“内部存储”(但从 Android SDK 的角度来看是 external storage)
让用户使用
ACTION_OPEN_DOCUMENT
选择可移动存储上的 APK,然后使用从中获得的Uri
作为ACTION_VIEW
Intent
创建您自己的
ContentProvider
可以从您的应用程序的可移动存储目录中提供文件,然后使用ContentProvider
而不是FileProvider
作为您的Uri
切换到使用
PackageInstaller
,因为这绕过了对任何类型ContentProvider
的需要,并且它解决了使用ACTION_VIEW
进行应用程序安装的事实已弃用 Android 10+