expo upload images
expo install expo-image-picker
# if using bare, also need this steps
# IOS: Add NSPhotoLibraryUsageDescription, NSCameraUsageDescription,
# and NSMicrophoneUsageDescription keys to your Info.plist:
<key>NSPhotoLibraryUsageDescription</key>
<string>Give $(PRODUCT_NAME) permission to save photos</string>
<key>NSCameraUsageDescription</key>
<string>Give $(PRODUCT_NAME) permission to access your camera</string>
<key>NSMicrophoneUsageDescription</key>
<string>Give $(PRODUCT_NAME) permission to use your microphone</string>
...
#Android: In AndroidManifest.xml add the following activity within application:
<activity
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
android:theme="@style/Base.Theme.AppCompat">
</activity>