在Android上以编程方式安装应用程序


211

我想知道是否可以通过编程方式从自定义Android应用程序安装动态下载的apk。


我不知道“取决于当前用户环境的动态加载程序”是什么意思。@Lie Ryan提供的答案显示了如何安装通过您选择的任何方式下载的APK。
CommonsWare

Answers:


240

您可以轻松启动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);

但是,未经用户的明确许可,您无法安装.apks 。除非设备和您的程序已植根。


35
好的答案,但不要硬编码/sdcard,因为在Android 2.2+和其他设备上,这是错误的。使用Environment.getExternalStorageDirectory()代替。
CommonsWare

3
/ asset /目录仅存在于开发机器中,当应用程序编译为APK时,/ asset /目录不再存在,因为所有资产都压缩在APK中。如果要从/ asset /目录安装,则需要先将其解压缩到另一个文件夹。
Lie Ryan

2
@LieRyan。很高兴看到您的答案。我的设备具有自定义ROM。我想动态安装主题,而不要求用户按下安装按钮。我可以那样做吗?
Sharanabasu Angadi

1
当targetSdk为25时,这似乎不再起作用。它给出了一个例外:“ android.os.FileUriExposedException:...通过Intent.getData()在应用程序之外公开的apk”。怎么会?
Android开发人员

4
@android开发人员:目前无法对此进行测试,但是在targetSdkVersion> = 24上,适用以下条件:stackoverflow.com/questions/38200282/…因此,您必须使用FileProvider。
Lie Ryan

56
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);

我遇到了同样的问题,经过几次尝试,它以这种方式为我解决了。我不知道为什么,但是分别设置数据和类型搞砸了我的意图。


我对这个答案的评价不够。出于某种原因,设置意图数据和MIME类型分别导致ActivityNotFoundException在API级17
布伦特M.拼写

我也对此投票了。这种表格是我可以上班的唯一表格。再过了几年..这是什么freakin bug?浪费时间。我正在使用Eclipse(Helios),顺便说一句。

10
@ BrentM.Spell和其他:查看文档,您将看到,只要您仅设置数据OR类型,另一个就会自动作废,例如:setData()会导致类型参数被删除。setDataAndType()如果您要为两者提供值,则必须使用。在这里:developer.android.com/reference/android/content/...
波格丹亚历

41

提供给该问题的解决方案均适用于targetSdkVersion23及以下的。但是,对于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以上。

关于此的更多详细信息可以在这里找到,我将不进行介绍。

要回答这个问题的targetSdkVersion24以上,就必须按照下列步骤操作:将以下内容添加到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(不带引号)。

  1. 编写以下代码,以将名称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库,并在其中使用了上面的代码。


2
我遵循了这种方法。但是,当我按下安装按钮时,它说文件已损坏。我无法通过蓝牙传输来安装相同的文件。为什么这样?

嗨,当您收到文件损坏错误时,您为应用带来的APK传输方式是什么?如果是从服务器下载的话,请检查以从服务器刷新复制文件中的流?由于安装了通过蓝牙工作传输的APK,我猜这就是问题。
Sridhar S

2
java.lang.NullPointerException:尝试在空对象引用上调用虚拟方法“ android.content.res.XmlResourceParser android.content.pm.ProviderInfo.loadXmlMetaData(android.content.pm.PackageManager,java.lang.String)”
Makvin

您的图书馆最终可能只有简单的自述文件,其中包含有关用法的简单说明...;)
Renetik,

2
非常感谢,经过一个星期的努力,我解决了我的问题!@SridharS,我知道它已经存在很久了,但是,如果您有兴趣,请在第5行上添加.authorityStrcontext.getPackageName()然后它应该可以工作了。
sehrob

30

好吧,我进行了更深入的研究,并从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);

33
android.permission.INSTALL_PACKAGES仅适用于系统签名的应用。因此,这无济于事
Hubert Liberacki 2014年

21

我只想分享一个事实,即我的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);

我收到相同的解析器错误!我不知道该怎么解决?我设置了file.setReadable(true,false),但它对我不起作用
Jai

15

这可以帮助别人很多!

第一:

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();
    }
}

第二:对于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>

第三:在res / xml文件夹中定义path.xml,如下所示!如果您要将其更改为其他内容,则可以使用此路径进行内部存储!您可以转到此链接: 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>

第四:您应该在清单中添加此权限:

<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>

允许应用程序请求安装软件包。定位到大于25的API的应用必须拥有此权限才能使用Intent.ACTION_INSTALL_PACKAGE。

请确保提供者的权限相同!



3
谢谢,第四步是所有这些中都缺少的。
阿敏·凯沙瓦尔兹安

1
确实,第四点是绝对必要的。所有其他答案都完全错过了。
whiteagle

android.permission.REQUEST_INSTALL_PACKAGES不适用于仅系统应用程序或使用系统密钥库签名的应用程序吗?
pavi2410

@Pavitra允许应用程序请求安装软件包。定位到大于25的API的应用必须拥有此权限才能使用Intent.ACTION_INSTALL_PACKAGE。保护级别:签名
Hadi Note

此代码不使用Intent.ACTION_INSTALL_PACKAGE。那为什么要这个许可呢?
亚历山大·迪亚吉廖夫

5

不需要硬编码接收应用程序的另一种解决方案,因此更安全:

Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData( Uri.fromFile(new File(pathToApk)) );
startActivity(intent);

4

是的,有可能。但是为此,您需要手机安装未验证的源。例如,slideMe做到了。我认为您最好的办法是检查应用程序是否存在,并向Android Market发送意向书。您应该为Android Market使用url方案。

market://details?id=package.name

我不确切地知道如何开始活动,但是如果您使用这种网址开始活动。它应该会打开android市场,并让您选择安装应用程序。


如我所见,此解决方案最接近真相:)。但这不适合我的情况。我需要动态加载程序,具体取决于当前的用户环境并要投放市场-这不是一个好的解决方案。但是无论如何,谢谢你。
Alkersan 2011年

4

值得注意的是,如果您使用DownloadManager开始下载,请确保将其保存到外部位置,例如setDestinationInExternalFilesDir(c, null, "<your name here>).apk";。带有包归档类型的意图似乎不喜欢content:用于下载到内部位置的方案,但是喜欢file:。(尝试将内部路径包装到File对象中,然后获取路径也不起作用,即使它会导致产生file:url,因为该应用程序也不会解析apk;看起来它必须是外部的。)

例:

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);

3

不要忘记请求权限:

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();
            }

        }

    }

    ...

}

2

只是一个扩展,如果有人需要一个库,那么可能会有所帮助。多亏了Raghav


2

试试这个

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);

1

首先将以下行添加到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);

0

UpdateNode为Android提供了一个API,可以从另一个应用程序内部安装APK软件包。

您只需在线定义更新,然后将API集成到您的App中即可。
目前,API处于Beta状态,但您已经可以自己进行一些测试。

除此之外,UpdateNode还提供了通过系统显示消息的功能-如果您想告诉用户一些重要信息,这将非常有用。

我是客户开发团队的一员,并且至少在自己的Android应用程序中使用了消息功能。

请参阅此处的描述如何集成API


该网站存在一些问题。我无法获得api_key,也无法继续注册。
infinite_loop_

@infinite_loop_,您好:您可以在用户帐户部分中找到API密钥:updatenode.com/profile/view_keys
sarahara 2015年

0

试试这个-在清单上写:

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);

1
您不需要仅系统权限即可启动Package Installer活动
Clocker 2016年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.