背景
我有一个我制作的业余时间应用程序(这里),它的主要功能之一是安装 APK 文件。
问题
安装应用程序的用户希望启动器上会出现一个新的应用程序图标。
这可能发生在 Play 商店中,但由于某些原因,启动器会忽略其他类型的安装。
Play 商店安装应用程序的方式与第三方应用程序的安装方式有所不同。
我想知道如何正确地做到这一点,比如在 Play Store 上,这样安装 APK 文件也会创建一个应用程序图标。
我试过的
我发现安装 APK 的唯一方法是:
@Nullable
public static Intent prepareAppInstallationIntent(Context context, File file, final boolean requestResult) {
Intent intent = null;
try {
intent = new Intent(Intent.ACTION_INSTALL_PACKAGE)//
.setDataAndType(
VERSION.SDK_INT >= VERSION_CODES.N ?
android.support.v4.content.FileProvider.getUriForFile(context, context.getPackageName() + ".provider", file)
: Uri.fromFile(file),
"application/vnd.android.package-archive")
.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true)
.putExtra(Intent.EXTRA_RETURN_RESULT, requestResult)
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
if (VERSION.SDK_INT < VERSION_CODES.JELLY_BEAN)
intent.putExtra(Intent.EXTRA_ALLOW_REPLACE, true);
} catch (Throwable e) {
}
return intent;
}
显现
<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/provider_paths"/>
</provider>
xml/provider_paths.xml
<?xml version="1.0" encoding="utf-8"?>
<paths>
<!--<external-path name="external_files" path="."/>-->
<external-path
name="files_root" path="Android/data/${applicationId}"/>
<external-path
name="external_storage_root" path="."/>
</paths>
但这不会在启动器上创建应用程序图标。
在问题跟踪器(这里)上写下这个,我知道我应该做什么。我被告知:
如果通过新的 PackageInstaller API 安装应用程序(并提供正确的安装原因),则会将图标添加到主屏幕。为类似命令安装应用程序不支持此功能。
问题
是否有第三方应用程序的 API 可以正确安装应用程序,在启动器上有一个新图标?如果是这样,具体如何?
即使使用 root 也有办法做到这一点吗?并通过 PC 使用 adb 命令?