0
0

More than 1 year has passed since last update.

Android12 ビルドエラー

Posted at

Android Studioでのビルドエラー:

android:exported needs to be explicitly specified for . Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.

原因
・Android12になった場合、AndroidManifest.xmlに追記しているAcitivityなどに、明確に「android:exported="true|false"」を設定しないといけません。

・利用中のライブラリにも、「android:exported="true|false"」の設定も必要です。

<activity 
android:name=".MainActivity"  
android:exported="true"/>

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