エラー
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'
}
}