您的应用程序当前面向 API 级别 30,并且必须至少面向 API 级别 31,以确保它基于最新的 API 构建

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

我只是尝试在 Google Play 商店上部署应用程序并收到此错误。

如何将目标 api 更改为 31。我知道需要在

build.gradle
 下的 
android/

文件中进行更改

这是我的:

ext {
        buildToolsVersion = "29.0.3"
        minSdkVersion = 21
        compileSdkVersion = 31
        targetSdkVersion = 30
    }

Expo 有一种方法可以使用 build 属性通过我的 app.config.js 添加它

我的问题我应该把它改成什么?

android react-native expo google-play
2个回答
19
投票

改变

targetSdkVersion 

ext {
        buildToolsVersion = "29.0.3"
        minSdkVersion = 21
        compileSdkVersion = 31
        targetSdkVersion = 31
    }

0
投票

您可以从 Android Studio 更改 Target SDK 版本,如下所示:

  1. 转到文件->项目结构
  2. 单击左侧边栏中的模块,然后单击默认配置。您的屏幕应如下面的屏幕截图所示,您可以在其中看到目标 SDK 版本。从那里改变它。

enter image description here

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