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