AshfaqueAhmed-HnH

Results 1 comments of AshfaqueAhmed-HnH

You need to provide the read and write access permission ``` private void requestWriteStorageRuntimePermission() { if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, PERMISSIONS_REQUEST_STORAGE_CODE); } else { } }...