-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the android gradle plugin supports only kotlin-android-extensions gradle plugin version 1.6.20 and higher #80
Comments
@senthalan0211 Have you got any solution? |
It's updated on master. Try testing it |
Guys found any solution? |
Did you try using the master branch? |
Running into the same problem, how can this be fixed? I installed this lib via Thanks. |
is this issue fixed? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
The text was updated successfully, but these errors were encountered: