Skip to content

Commit ed0e5d3

Browse files
committed
fix fileprovider冲突
1 parent 2118485 commit ed0e5d3

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

app/src/main/java/com/yalantis/ucrop/sample/ResultActivity.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,15 @@ private void copyFileToDownloads(Uri croppedFileUri) throws Exception {
159159
private void showNotification(@NonNull File file) {
160160
Intent intent = new Intent(Intent.ACTION_VIEW);
161161
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+
162168
Uri fileUri = FileProvider.getUriForFile(
163169
this,
164-
getString(R.string.file_provider_authorities),
170+
builder.toString(),
165171
file);
166172

167173
intent.setDataAndType(fileUri, "image/*");

lib_crop_native/src/main/AndroidManifest.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
package="com.yalantis.ucrop">
45

56
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
@@ -9,8 +10,8 @@
910
android:allowBackup="false"
1011
android:requestLegacyExternalStorage="true">
1112
<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"
1415
android:exported="false"
1516
android:grantUriPermissions="true">
1617
<meta-data
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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+
}

0 commit comments

Comments
 (0)