Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Permission Denial: opening provider com.android.providers.media.MediaDocumentsProvider when RESTARTING the app

I have an Android application that allows users to choose a photo for their profile as follows:

public void pickImage(View view) {
    Intent getIntent = new Intent(Intent.ACTION_GET_CONTENT);
    getIntent.setType("image/*");

    Intent pickIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    pickIntent.setType("image/*");

    Intent chooserIntent = Intent.createChooser(getIntent, "Select Image");
    chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] {pickIntent});

    startActivityForResult(chooserIntent, 1);
}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    Context context = getApplicationContext();
    if (requestCode == 1 && resultCode == Activity.RESULT_OK) {
        if (data == null) {
            //Display an error
            return;
        }
        try {
            ImageView im = findViewById(R.id.circularImageView);
            uri = data.getData();
            im.setImageURI(uri);
            String image = uri.toString();


            Log.d("ImageS", image);

            SqlHelper db = new SqlHelper(this);
            Intent i = getIntent();
            String userid = i.getStringExtra("Name");
            db.updateImage(userid, image);

        }catch (Exception e){

        }
        //Now you can do whatever you want with your inpustream, save it as file, upload to a server, decode a bitmap...
    }
}

Everything works fine before I restart the app. Here I want to retrieve from my db the image everything works fine:

@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    ActionBar actionBar = getActionBar();
    actionBar.hide();
    setContentView(R.layout.activity_main);

    String[] permissions = {Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.MANAGE_DOCUMENTS};
    for(String permission: permissions){
        if (ContextCompat.checkSelfPermission(this, permission)
                != PackageManager.PERMISSION_GRANTED) {
            if (ActivityCompat.shouldShowRequestPermissionRationale(this,
                    permission)) {

                // Show an explanation to the user *asynchronously* -- don't block
                // this thread waiting for the user's response! After the user
                // sees the explanation, try again to request the permission.

            } else {

                // No explanation needed; request the permission
                ActivityCompat.requestPermissions(this,
                        permissions, 0);

                // MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
                // app-defined int constant. The callback method gets the
                // result of the request.
            }
        }
    }



    mGoogleApiClient = new GoogleApiClient.Builder(this).addApi(LocationServices.API).addConnectionCallbacks(this).addOnConnectionFailedListener(this).build();
    ImageView logo = findViewById(R.id.imageView4);
    logo.setImageResource(R.drawable.logo);
    SqlHelper db = new SqlHelper(this);

    //Add some locations for the users
    a.setLatitude(Latitude[0]);
    a.setLongitude(Longitude[0]);
    b.setLatitude(Latitude[1]);
    b.setLongitude(Longitude[1]);

    Intent intentR = getIntent();
    String name = intentR.getStringExtra("Name");


    // Check for the freshest data.

    ImageView im1 = findViewById(R.id.circularImageView2);
    im1.setImageURI(null);
    String iS = db.getImage(name);
    Log.d("ImageR", iS);
    //
    // Uri uri = Uri.parse(image);
    //Log.d("Equals", String.valueOf(iS.equals(String.valueOf(R.drawable.imageuser))));
    if(iS.equals(String.valueOf(R.drawable.imageuser))){
        im1.setImageResource(Integer.parseInt(iS));
    }else{
        Uri uri = Uri.parse(iS);
        ContentResolver contentResolver= getContentResolver();
        ParcelFileDescriptor parcelFileDescriptor = null;
        try {
//HERE COMES THE PROBLEM//
            parcelFileDescriptor = contentResolver.openFileDescriptor(uri, "r"); /
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
        Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
        try {
            parcelFileDescriptor.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        im1.setImageBitmap(image);
    }


    ArrayList<String> notifications = db.getNotifications(name);
    if(notifications.size()>0) {
        ImageView im = findViewById(R.id.bell);
        ImageView c = findViewById(R.id.circleN);
        TextView tx = findViewById(R.id.nNot);
        im.setVisibility(View.VISIBLE);
        c.setVisibility(View.VISIBLE);
        tx.setVisibility(View.VISIBLE);
        tx.setText(String.valueOf(notifications.size()));
    }

   // db.addUser(new User("Babouche", "Babouche", location[1]), this);
   // db.addUser(new User("Arturo", "Arturo", location[0]), this);


}`

The thing is that when I restart the application, I get the following error when going into an activity in which a user changed the image:

FATAL EXCEPTION: main
Process: com.example.arturopavon.finalproject, PID: 1445
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.arturopavon.finalproject/com.example.arturopavon.finalproject.MainActivity} : java.lang.SecurityException: Permission Denial: opening provider com.android.providers.media.MediaDocumentsProvider from ProcessRecord{47cb71a 1445:com.example.arturopavon.finalproject/u0a294} (pid=1445, uid=10294) requires that you obtain access using ACTION_OPEN_DOCUMENT or related APIs

I have permissions set for my app to read internal storage but it is like it is not working after rebooting.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.arturopavon.finalproject">

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission
    android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission
    android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission
    android:name="android.permission.MANAGE_DOCUMENTS"/>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="BiteME"
    android:roundIcon="@drawable/logo"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".LoginActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".MainActivity" />
    <activity android:name=".UserActivity" />
    <activity android:name=".UserPreferences" />
    <activity android:name=".SignUp" />
    <activity android:name=".Notifications" />

</application>

    @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.login);
    String[] permissions = {Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.MANAGE_DOCUMENTS};
    for(String permission: permissions){
        if (ContextCompat.checkSelfPermission(this, permission)
                != PackageManager.PERMISSION_GRANTED) {
            if (ActivityCompat.shouldShowRequestPermissionRationale(this,
                    permission)) {

                // Show an explanation to the user *asynchronously* -- don't block
                // this thread waiting for the user's response! After the user
                // sees the explanation, try again to request the permission.

            } else {

                // No explanation needed; request the permission
                ActivityCompat.requestPermissions(this,
                        permissions, 0);

                // MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
                // app-defined int constant. The callback method gets the
                // result of the request.
            }
        }
    }

}

Any ideas on how to solve this?

like image 709
Arturo Pavón Avatar asked Apr 30 '18 01:04

Arturo Pavón


1 Answers

As stated in SAF Storage Access Framework (SAF) :

Use ACTION_GET_CONTENT if you want your app to simply read/import data. With this approach, the app imports a copy of the data, such as an image file.

Use ACTION_OPEN_DOCUMENT if you want your app to have long term, persistent access to documents owned by a document provider.

It seems that you have the second use case.

So instead of :

Intent getIntent = new Intent(Intent.ACTION_GET_CONTENT);

try

Intent getIntent = new Intent(Intent.ACTION_OPEN_DOCUMENT);

The docs provide a sample for using this.

like image 166
Yash Avatar answered Sep 18 '22 02:09

Yash