构建 React Native 应用程序的问题,expo-modules-core:compileDebugKotlin'

问题描述 投票:0回答:1

我收到此错误:

任务:expo-modules-core:compileDebugKotlin 失败
e: 文件:///C:/Users/dell/Desktop/FDR/FR_APP/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/defaultmodules/CoreModule.kt:88: 21 未解决的参考:重新加载

任务“:expo-modules-core:compileDebugKotlin”执行失败。

执行时发生故障
org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction
编译错误。查看日志了解更多详情

build.gradle
是这样的:

buildToolsVersion = "34.0.0"
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "25.1.8937393"
kotlinVersion = "1.9.0"

版本是这样的:

Expo - 51.0.31
React Native - 0.73.5
react-native gradle expo build.gradle gradlew
1个回答
0
投票

问题在于您的 React Native 版本,要使用 expo sdk 51,您的 React Native 版本应至少为 0.74

"react-native": "0.74.0"

如果您使用最新的 expo 版本,请确保将所有与 expo 相关的依赖项更新为最新版本

您可以使用 react-native 升级助手来升级您的 React Native 版本

© www.soinside.com 2019 - 2024. All rights reserved.