0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google play consoleへデプロイする際のエラー[not compliant with the Google Play 64-bit ](ReactNative)

Last updated at Posted at 2019-08-30

エラー

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

This release is not compliant with the Google Play 64-bit requirement

解決法

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

    defaultConfig {
        applicationId "jp.co.hogehoge"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
        ndk {
            abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
        }
    }

参考

Building with Android Studio or Gradle

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?