LoginSignup
0
0

More than 3 years have passed since last update.

Google play consoleへデプロイする際のエラー[must target at least api level 28](ReactNative)

Last updated at Posted at 2019-08-30

エラー

Google play consoleへアプリをデプロイ(.apkファイルのアップロード)の際に、下記のようなエラーが発生しました。

must target at least api level 28

解決法

android/build.gradleの下記を28に書き換えた上で.apkファイルの発行->再度、google play consoleへアップロード

buildscript {
    ext {
        targetSdkVersion = 28

参考

Meet Google Play's target API level requirement

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0