Closed thewolfprod closed 1 year ago
This error happens because Samsung libraries are based on a very old version of Google Android Jetpack ones. Try to downgrade the modules you've set in your build.gradle file
I've also made NotiNotes in kotlin and the newer verions of ktx don't work with the library. Try using:
implementation 'androidx.core:core-ktx:1.6.0'
implementation("androidx.annotation:annotation-experimental") { version { strictly("1.1.0") } }
(I'm not sure if the second one is actually needed or if it was a fix to something else)
It works 😃 Thanks for help guys
I would like to create an app with this library - the problem is that I switched from Java to Kotlin and the question is whether this library can work with Kotlin? I ask because in MainActivity.java (which is very simple)
I get an error during Project Rebuild:
and also errors about duplicated classes from:
androidx.customview
androidx.fragment
androidx.viewpager
and I just excluded them and I didn't get any error about duplicated classes, but still - Im getting error that I described above (and in attachment)AndroidManifest.xml:
build.gradle: