Android-Image-Cropper icon indicating copy to clipboard operation
Android-Image-Cropper copied to clipboard

Play store has suggestion upgrade the code for android 15

Open gaurav90jain opened this issue 4 months ago • 1 comments

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).

gaurav90jain avatar Sep 25 '25 09:09 gaurav90jain