react-native-customized-image-picker
Version:
Select single or multiple images, with croping option
23 lines (18 loc) • 786 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reactnative.mg.imagepicker">
<application>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
<activity
android:name="com.yalantis.ucrop.UCropActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
</application>
</manifest>