howljs / hl_image_picker

Simplify media selection, cropping, and camera functionality in your Flutter app. Choose images/videos from the library, crop images, and capture new photos/videos with ease.
https://pub.dev/packages/hl_image_picker
20 stars 12 forks source link

Crash app when crop #14

Closed nguyenxuankiet262 closed 7 months ago

nguyenxuankiet262 commented 7 months ago

i got this error when call openCropper function

E/AndroidRuntime(12767): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.yalantis.ucrop.UCrop" on path: DexPathList[[zip file "/data/app/m15gwzKv0ZpxSzU9fBezuw==/com.joongyong.theblack-iaeWzsOVcWf8HmXkpDR6YA==/base.apk"],nativeLibraryDirectories=[/data/app/m15gwzKv0ZpxSzU9fBezuw==/com.joongyong.theblack-iaeWzsOVcWf8HmXkpDR6YA==/lib/arm64, /data/app/~~m15gwzKv0ZpxSzU9fBezuw==/com.joongyong.theblack-iaeWzsOVcWf8HmXkpDR6YA==/base.apk!/lib/arm64-v8a, /system/lib64, /system/system_ext/lib64]] E/AndroidRuntime(12767): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:218) E/AndroidRuntime(12767): at java.lang.ClassLoader.loadClass(ClassLoader.java:379) E/AndroidRuntime(12767): at java.lang.ClassLoader.loadClass(ClassLoader.java:312) E/AndroidRuntime(12767): ... 14 more

My code: await _picker.openCropper( media.path, cropOptions: HLCropOptions( aspectRatioPresets: [CropAspectRatioPreset.original, CropAspectRatioPreset.square], compressQuality: 1, compressFormat: CompressFormat.jpg, croppingStyle: CroppingStyle.normal, ), )

howljs commented 7 months ago

@nguyenxuankiet262 I think there is some special reason, I can't reproduce it like the error you're encountering. Please give me more information so I can reproduce this error

nguyenxuankiet262 commented 7 months ago

I used another image picker using PictureSelector. I removed it and hl_image_picker works well