This is a fork project, please use the original project

diff list:

  1. ./android/src/main/AndroidManifest.xml android:exported="true" => android:exported="false"
  2. ./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.)
    1. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" => implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    2. added follows:
          compileOptions {
              sourceCompatibility = JavaVersion.VERSION_1_8
              targetCompatibility = JavaVersion.VERSION_1_8
          }
      
          kotlinOptions {
              jvmTarget = '1.8'
          }