App crashes automatically when I completed the cropping image without any error logs. I used expo-image-picker

Viewed 435

the app crashes and closed automatically without any error logs.

let result = await ImagePicker.launchImageLibraryAsync()({
      mediaTypes: ImagePicker.MediaTypeOptions.Images,
      allowsEditing: true,
      // aspect: [4, 3],
      quality: 1,
    });
1 Answers

yes I saw this bug lately, it seems shown in bar flow, by the way, Its work with me after I cancel cropping by delete allowsEditing: true

<activity android:name="com.theartofdev.edmodo.cropper.CropImageActivity" android:theme="@style/Base.Theme.AppCompat"> </activity>

good luck

Related