You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android gradle plugin: 7.3.1
Gradle: 7.5.1
WARNING:Software Components will not be created automatically for Maven publishing from Android Gradle Plugin 8.0. To opt-in to the future behavior, set the Gradle property android.disableAutomaticComponentCreation=true in the `gradle.properties` file or use the new publishing DSL.
FAILURE: Build failed with an exception.
* 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-webview' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0
when running project using
import { Camera } from 'react-native-camera-kit';
of course works great with ios but android will not build.
To Reproduce
Steps to reproduce the behavior:
using
"dependencies": {
"react-native": "0.71.6",
"react-native-reanimated": "3.5.2",
"react-native-webview": "^13.6.2",
"react-native-camera-kit": "^13.0.0",
"bootstrap": "^5.3.2",
}
calling like
import { Camera } from 'react-native-camera-kit';
<Camera
scanBarcode={true}
onReadCode={(event: any) => {
handleOnReadCode(event);
}}
showFrame={true}
laserColor="red"
frameColor="white"
/>
like stated works fine on ios but will not build on android
added from https://github.com/teslamotors/react-native-camera-kit/blob/master/docs/kotlin.md
tried various numbers, all i could think of for kotlin_version = "1.7.20", "1.7.10", and many others to no avail
macos ventura 13.2.1
TRYING DESPERTELY to add a qr scanner,
since react-native-camera is decprecated, and react-native-vision-camera doesn't implement a qr scanner , thought this was best option any help on build process for android is greatly appreciated.
The text was updated successfully, but these errors were encountered:
getting
when running project using
import { Camera } from 'react-native-camera-kit';
of course works great with ios but android will not build.
To Reproduce
Steps to reproduce the behavior:
using
"dependencies": {
"react-native": "0.71.6",
"react-native-reanimated": "3.5.2",
"react-native-webview": "^13.6.2",
"react-native-camera-kit": "^13.0.0",
"bootstrap": "^5.3.2",
}
calling like
import { Camera } from 'react-native-camera-kit';
<Camera
scanBarcode={true}
onReadCode={(event: any) => {
handleOnReadCode(event);
}}
showFrame={true}
laserColor="red"
frameColor="white"
/>
like stated works fine on ios but will not build on android
added from
https://github.com/teslamotors/react-native-camera-kit/blob/master/docs/kotlin.md
tried various numbers, all i could think of for kotlin_version = "1.7.20", "1.7.10", and many others to no avail
macos ventura 13.2.1
TRYING DESPERTELY to add a qr scanner,
since react-native-camera is decprecated, and react-native-vision-camera doesn't implement a qr scanner , thought this was best option any help on build process for android is greatly appreciated.
The text was updated successfully, but these errors were encountered: