Android-Image-Cropper
Android-Image-Cropper copied to clipboard
Play store has suggestion upgrade the code for android 15
Kotlin incompatibilities will cause crashes Your app uses Kotlin's removeFirst() and removeLast() extension functions, which conflict with Java functions in Android 15. This will cause apps to crash on devices on Android 14 or earlier. Your app uses these functions in the following places: com.canhub.cropper.BitmapUtils$$ExternalSyntheticApiModelOutline0.m To avoid crashes, replace all Kotlin removeFirst() and removeLast() function calls with removeAt(0) and removeAt(list.lastIndex).