はじめに
・Androidアプリを公開するにあったって、Google Play Consoleからアプリを公開しますが、buildしたファイルをuploadしようとすると、エラーが起こった際のまとめを備忘録として残そうと思います。
「広告ID」の警告が出た場合
ref:
「このファイルは Android 12 以降にはインストールできません」の警告が出た場合
・対処法
android/app/src/main/AndroidManifest.xmlにandroid:exported = “true”
を追記する。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.news_api">
<application
android:label="news_api"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize"
+ android:exported = “true”>
ref: