-
Notifications
You must be signed in to change notification settings - Fork 338
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
'kotlin-android-extensions' not supported anymore #326
Comments
+1 |
any news on this? |
go to node_modules/react-native-background-upload/android/build.gradle and make following changes: kotlinVersion = '1.6.0' to kotlinVersion = '1.7.0' apply plugin: 'kotlin-android-extensions' to apply plugin: 'kotlin-parcelize' |
@arham1999 thank you so so so much! Minor correction (you had misspelled kotlin): kotlinVersion = '1.6.0' to kotlinVersion = '1.7.0' I just went and used patch-package since I can't easily replace this package in my project. |
thanks 🙂 |
kotlin-android-extensions is not supported anymore for new Kotlin/Gradle versions, instead should use kotlin-parcelize
The text was updated successfully, but these errors were encountered: