Open downloaded file on Android N using FileProvider

前端 未结 5 905
滥情空心
滥情空心 2021-02-05 17:11

I\'ve got to fix our App for Android N due to the FileProvider changes. I\'ve basically read all about this topic for the last ours, but no solution found did work out for me.

5条回答
  •  深忆病人
    2021-02-05 17:48

    here change in AndroidManifest.xml

    
        
    
    

    change in file path

    Uri contentUri;
    if(Build.VERSION.SDK_INT == 24){
             contentUri = FileProvider.getUriForFile(MainActivity.this,
                  getApplicationContext().getPackageName() + ".provider",
                        file);
     } else{
             contentUri = Uri.fromFile(file);
            }
    

提交回复
热议问题