react-native-background-upload
react-native-background-upload copied to clipboard
'kotlin-android-extensions' not supported anymore
kotlin-android-extensions is not supported anymore for new Kotlin/Gradle versions, instead should use kotlin-parcelize
+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' apply plugin: 'kotlin-android-extensions' to apply plugin: 'kotlin-parcelize'
I just went and used patch-package since I can't easily replace this package in my project.
@arham1999 thank you so so so much! Minor correction (you had misspelled kotlin):
kotlinVersion = '1.6.0' to kotlinVersion = '1.7.0' apply plugin: 'kotlin-android-extensions' to apply plugin: 'kotlin-parcelize'
I just went and used patch-package since I can't easily replace this package in my project.
thanks 🙂