Skip to content

Commit

Permalink
Renamed library_file_paths.xml to prevent name clashes
Browse files Browse the repository at this point in the history
Refs #644
  • Loading branch information
M66B committed Jan 7, 2025
1 parent 1ea2a05 commit 277e073
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cropper/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/library_file_paths"/>
android:resource="@xml/cropper_library_file_paths"/>
</provider>
<activity
android:name="com.canhub.cropper.CropImageActivity"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import androidx.core.content.FileProvider
*
* See https://developer.android.com/guide/topics/manifest/provider-element.html for details.
*/
class CropFileProvider() : FileProvider(R.xml.library_file_paths) {
class CropFileProvider() : FileProvider(R.xml.cropper_library_file_paths) {
// This class intentionally left blank.
// https://android-review.googlesource.com/c/platform/frameworks/support/+/1978527
}

0 comments on commit 277e073

Please sign in to comment.