Skip to content

Commit

Permalink
Renames file provider classes to avoid name conflicts with other proj…
Browse files Browse the repository at this point in the history
…ects (#41)

* renames classes to avoid name conflicts with other projects

* removes unnecessary comment
  • Loading branch information
douglasiacovelli authored and esafirm committed Apr 12, 2017
1 parent 83bd831 commit 4e76107
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imagepicker/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
android:theme="@style/ef_AppTheme"/>

<provider
android:name="android.support.v4.content.FileProvider"
android:name=".helper.ImagePickerFileProvider"
android:authorities="${applicationId}.imagepicker.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
android:resource="@xml/image_picker_provider_paths"/>
</provider>
</application>

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.esafirm.imagepicker.helper;

import android.support.v4.content.FileProvider;

public class ImagePickerFileProvider extends FileProvider {
}

0 comments on commit 4e76107

Please sign in to comment.