应用程序必须面向 Android 14(API 级别 34)或更高版本

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

我将项目的目标 API 级别从 33 提高到 34。构建过程成功。当我在 Visual Studio Xcode 中使用模拟器运行它时,它没有抛出任何错误。但是,当应用程序加载到模拟器并启动时,它会停止并关闭应用程序。当我在 Android Studio 中打开项目并在 logcat 中检查它时,它会抛出以下错误。

android react-native sdk upgrade android-api-levels
1个回答
0
投票

buildscript { ext { buildToolsVersion = "34.0.0" minSdkVersion = 21compileSdkVersion = 34 targetSdkVersion = 34 ndkVersion = "21.4.7075529" // 以下任何内容都可以 // googlePlayServicesVersion = "17.0.0" playServicesVersion = "18.0. 0" // playServicesLocationVersion = "17.0.0" } }

android/app/build.gradle 更改为 --> 实现“com.facebook.react:react-native:+” 依赖项 {....实现“com.facebook.react:react-native:0.67.2”}

梯度; distributionUrl=https://services.gradle.org/distributions/gradle-7.2-all.zip

Logcat日志:

Android Logcat 日志图片

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