Unknown URL content://downloads/my_downloads

后端 未结 4 2329
余生分开走
余生分开走 2020-12-07 19:16

I\'m using Download Manger for download some multimedia files and categorize them. I\'m also using Crashlytics and this is an error I frequently get it on different devices

4条回答
  •  半阙折子戏
    2020-12-07 19:38

    The exception is caused by disabled Download Manager. And there is no way to activate/deactivate Download Manager directly, since it's system application and we don't have access to it.

    Only alternative way is redirect user to settings of Download Manager Application.

    try {
         //Open the specific App Info page:
         Intent intent = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
         intent.setData(Uri.parse("package:" + "com.android.providers.downloads"));
         startActivity(intent);
    
    } catch ( ActivityNotFoundException e ) {
         e.printStackTrace();
    
         //Open the generic Apps page:
         Intent intent = new Intent(android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
         startActivity(intent);
    }
    

提交回复
热议问题