13

私のアプリには、カスタムの自動ダウンロードとインストール APK があり、このように動作します

  // auto register for the complete download
     activity.registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));



 // Download the file through DownloadManager
 String destination = Environment.getExternalStorageDirectory() + "/";
    String fileName = "myfile.apk";
    destination += fileName;
    final Uri uri = Uri.parse("file://" + destination);
    DownloadManager.Request request = new  DownloadManager.Request(Uri.parse(apkUrl));
    request.setDescription("description");
    request.setTitle("title");
    request.setDestinationUri(uri);
    final DownloadManager manager = (DownloadManager) activity.getSystemService(Context.DOWNLOAD_SERVICE);
    final long downloadId = manager.enqueue(request);

onComplete = new BroadcastReceiver() {
      public void onReceive(Context ctxt, Intent intent) {

          Intent install = new Intent(Intent.ACTION_VIEW);
          // BEFORE working doing this
          //install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
          //install.setDataAndType(uri,
          //    manager.getMimeTypeForDownloadedFile(downloadId));

          // Using file provider it doesnt work
          Uri apkUri = FileProvider.getUriForFile(AutoUpdate.this,
              "com.myapp", file);
                install.setDataAndType(apkUri,manager.getMimeTypeForDownloadedFile(downloadId));
          activity.startActivity(install);
          activity.unregisterReceiver(this);

      }
    };

Android マニフェスト:

<provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.myapp"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
        </provider>

Provider_path (申し訳ありませんが、パス タグを切り捨てます)

external-path name="myfolder" path="."/>

ファイルのダウンロードが完了すると、onComplete が呼び出されますが、アクティビティは開始されません。

インテントを処理するアクティビティが見つかりません { act=android.intent.action.VIEW dat=content://com.myapp/myfolder/myfile.apk typ=application/vnd.android.package-archive flg=0x4000000 }

通常の file:// を使用すると動作します

ファイル プロバイダーを使用する際に不足しているものはありますか? ファイルが見つからないため、アクティビティは開始されませんか? 追加の許可が必要ですか? (現時点では、外部ストレージにインターネット、読み取り、書き込みがあります)

4

3 に答える 3

24

パッケージ インストーラーはcontent、Android 7.0 以降のスキームのみをサポートします。それ以前は、ドキュメントに反対の記述があるにもかかわらず、パッケージ インストーラーはfileスキームのみをサポートしていました。

に分岐するなど、Android 7.0 以降で実行しているかどうかに基づいて、 を別Uriの方法で設定する必要があります。IntentBuild.VERSION.SDK_INT

于 2016-09-05T14:55:25.370 に答える
-1

次の理由により、プロバイダーが見つかりません

 android:enabled="true"

がマニフェストにありません。

しかし、CWの他の答えを読んでもうまくいきません。

于 2016-09-05T14:59:52.217 に答える