以编程方式安装或更新Android App android 8

时间:2018-08-23 10:20:10

标签: android-8.0-oreo android-fileprovider android-8.1-oreo

我正在尝试通过编程方式在 android 8(Oreo)设备上从我的应用程序安装应用程序。

am使用以下导致此问题的代码。 我的文件提供者权限定义为

`private static final String AUTHORITY = "com.unicornialab.myapplication.fileprovider";`

我要安装的应用程序位于设备根存储中名为Alpha1updates的文件夹中,就像在第一行中一样

`File toInstall = new File(Environment.getExternalStorageDirectory().getPath()
                        +  File.separator + "Alpha1Updates" + File.separator, "update.apk")` 

然后我尝试安装如下所示的应用程序

`if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
           // Uri contentUri = FileProvider.getUriForFile(this, "com.unicornialab.myapplication", newFile);
            Uri apkUri = FileProvider.getUriForFile(context, AUTHORITY, toInstall);
//            Intent intent = new Intent(Intent.ACTION_VIEW);
//            intent.setDataAndType(apkUri, "application/vnd.android.package-archive");
            Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
            intent.setData(apkUri);
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            context.startActivity(intent);
        } else {
            Uri apkUri = Uri.fromFile(toInstall);
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setDataAndType(apkUri, "application/vnd.android.package-archive");
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(intent);
        }`

由于我使用的是android 8设备,因此代码位于

`if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {}`
执行以上代码中的

。 我已请求许可从未知来源安装软件包,例如

`if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            if (!getPackageManager().canRequestPackageInstalls()) {
                startActivityForResult(new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES).setData(Uri.parse(String.format("package:%s", getPackageName()))), MY_PERMISSIONS_INSTALLFROM_UNKWONSOURCES);
            }
        }`

我的清单文件中已经包含了这样的提供程序。

`<provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="${applicationId}.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths" />
        </provider>`

我在xml文件夹中的provider_paths如下

`<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="external_files" path="."/>
</paths>`

要获取该文件,我可能在做错什么解析程序包时遇到了问题

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

在此问题中,您应该为android oreo

添加此权限
   <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />

对于提供程序类,我像这样生成了一个类 GenericFileProvider

public class GenericFileProvider extends FileProvider {

private static final String TAG_EXTERNAL_FILES = "external-files-path";
private static final String TAG_EXTERNAL_CACHE = "external-cache-path";

private static final String TAG_ROOT_PATH = "root-path";
private static final String TAG_FILES_PATH = "files-path";
private static final String TAG_CACHE_PATH = "cache-path";
private static final String TAG_EXTERNAL = "external-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>

在此问题中,我认为您在get app中的目录地址错误,您应该尝试 解决这个问题。