vision-camera-code-scanner icon indicating copy to clipboard operation
vision-camera-code-scanner copied to clipboard

Having the issue of installation of vision-camera-code-scanner

Open MarcusCody opened this issue 2 years ago • 2 comments

* What went wrong:
The Android Gradle plugin supports only kotlin-android-extensions Gradle plugin version 1.6.20 and higher.
The following dependencies do not satisfy the required version:
project ':react-native-vision-camera' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30
    "react": "18.2.0",
    "react-native": "0.71.4",

Tried to add the kotlinVersion ="1.7.0" to the android/build.gradle file but it doesn't work

MarcusCody avatar Mar 20 '23 08:03 MarcusCody

update build.gradle

    ext {
        RNNKotlinVersion = "1.3.61"
        buildToolsVersion = "30.0.2"
        minSdkVersion = 21
        compileSdkVersion = 31
        targetSdkVersion = 31
        ndkVersion = "22.1.7171670" // install NDk
        kotlinVersion = "1.5.31"
        VisionCameraCodeScanner_targetSdkVersion = 31
        VisionCameraCodeScanner_compileSdkVersion = 31
    }
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31" // kotlin version
        classpath("com.android.tools.build:gradle:4.2.2")
    }

when sdk target is 31 update AndroidManifest.xml

<activity
android:exported="true" // add this
...
>

Salem-Abderaouf avatar Mar 20 '23 13:03 Salem-Abderaouf