hhunaid / react-native-image-crop-tools

Native-ish Image Crop Tools for react native
172 stars 58 forks source link

the android gradle plugin supports only kotlin-android-extensions gradle plugin version 1.6.20 and higher #80

Open senthalan0211 opened 1 year ago

senthalan0211 commented 1 year ago

the android gradle plugin supports only kotlin-android-extensions gradle plugin version 1.6.20 and higher. the following dependencies do not satisfy the required version: project ':react-native-image-crop-tools' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10

Change kotlin_version in build.gradle file

Old build.gradle in this package: ext.kotlin_version = '1.6.10'

Changed in node modules: ext.kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : '1.6.10'

Please change in the npm package

AkshayItaliya01 commented 1 year ago

@senthalan0211 Have you got any solution?

hhunaid commented 1 year ago

It's updated on master. Try testing it

AkshayItaliya01 commented 1 year ago

Guys found any solution?

hhunaid commented 1 year ago

Did you try using the master branch?

skizzo commented 1 year ago

Running into the same problem, how can this be fixed?

I installed this lib via npm install --save react-native-image-crop-tools, which installs version 1.6.4.

Thanks.

margretheluth commented 8 months ago

is this issue fixed?