This is a fork project, please use the original project
diff list:
- ./android/src/main/AndroidManifest.xml android:exported="true" => android:exported="false"
- ./android/build.gradle(fix > 'compileReleaseJavaWithJavac' task (current target is 1.8) and 'compileReleaseKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version.)
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" => implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
- added follows:
compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' }