gradle React原生相机包导致构建失败

lo8azlld  于 2023-04-21  发布在  React
关注(0)|答案(1)|浏览(137)

找不到太多关于这方面的信息。
我们有一个标准的React-native CLI项目。版本

  • React:18.2.0
  • 原始React:0.71.1

据我所知,没有一个配置文件是从默认值编辑的。
我们添加了以下npm包来访问和管理相机使用情况npm install react-native-vision-camera
构建现在失败,输出如下:x1c 0d1x
我试过各种npm相机软件包,它们都遇到了类似的问题。如果我卸载该软件包。应用程序再次构建良好。
知道我哪里做错了吗?

2sbarzqh

2sbarzqh1#

您需要告诉此包使用正确的Kotlin版本。尝试将以下行添加到android/build.gradle文件中:

buildscript {
    ext {
        buildToolsVersion = "33.0.0"
        minSdkVersion = 23
        compileSdkVersion = 33
        targetSdkVersion = 33
        // For @react-native-community/netinfo package
        androidXCore = "1.0.2"
        // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
        ndkVersion = "23.1.7779620"

        kotlin_version = '1.6.20'    // <-- Add this
        kotlinVersion = '1.6.20'     // <-- Add this
    }
    ...
    ...
    ...

相关问题