File tree 3 files changed +17
-3
lines changed
app/src/main/java/com/yalantis/ucrop/sample
java/com/yalantis/ucrop/fileprovider
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -159,9 +159,15 @@ private void copyFileToDownloads(Uri croppedFileUri) throws Exception {
159
159
private void showNotification (@ NonNull File file ) {
160
160
Intent intent = new Intent (Intent .ACTION_VIEW );
161
161
intent .addFlags (Intent .FLAG_ACTIVITY_NEW_TASK );
162
+
163
+ StringBuilder builder = new StringBuilder ();
164
+ String packageName = getPackageName ();
165
+ builder .append (packageName );
166
+ builder .append (".crop.fileprovider" );
167
+
162
168
Uri fileUri = FileProvider .getUriForFile (
163
169
this ,
164
- getString ( R . string . file_provider_authorities ),
170
+ builder . toString ( ),
165
171
file );
166
172
167
173
intent .setDataAndType (fileUri , "image/*" );
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ xmlns : tools =" http://schemas.android.com/tools"
3
4
package =" com.yalantis.ucrop" >
4
5
5
6
<uses-permission android : name =" android.permission.READ_EXTERNAL_STORAGE" />
9
10
android : allowBackup =" false"
10
11
android : requestLegacyExternalStorage =" true" >
11
12
<provider
12
- android : name =" androidx.core.content.FileProvider "
13
- android : authorities =" ${applicationId}.provider "
13
+ android : name =" com.yalantis.ucrop.fileprovider.CropFileProvider "
14
+ android : authorities =" ${applicationId}.crop.fileprovider "
14
15
android : exported =" false"
15
16
android : grantUriPermissions =" true" >
16
17
<meta-data
Original file line number Diff line number Diff line change
1
+ package com .yalantis .ucrop .fileprovider ;
2
+
3
+ import androidx .annotation .Keep ;
4
+
5
+ @ Keep
6
+ public class CropFileProvider extends androidx .core .content .FileProvider {
7
+ }
You can’t perform that action at this time.
0 commit comments