5

マニフェストの唯一のアクティビティに追加android:exported="true"しましたが、コンパイル SDK とターゲット SDK のバージョンを 31 に更新した後もエラーを下回っています。また、プロジェクトを再構築し、キャッシュを無効にして再起動しようとしましたが、それは役に立ちませんでした

エラー- 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.

AndroidManifest ファイル

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.xyz.abc">

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

    <application
        android:name=".framework.presentation.BaseApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.xyz.presentation.MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

マージされたマニフェスト エラー

appcompat-resources:1.3.1 マニフェスト、runtime-livedata:1.0.0 マニフェスト、runtime-saveable:1.0.1 マニフェスト、firebase-measurement-connector:19.0.0 マニフェスト、vectordrawable-animated:1.1.0 マニフェスト、メイン nav_graph。 xml ナビゲーション ファイル マージ エラー: エラー: android:exported を明示的に指定する必要があります。Android 12 以降を対象とするアプリでは、明示的な値を指定する必要があります。android:exported対応するコンポーネントにインテント フィルタが定義されている場合。詳細については、https://developer.android.com/guide/topics/manifest/activity-element#exported を参照してください。Dairy.app メイン マニフェスト (このファイル) エラー: android:exported を明示的に指定する必要があります。Android 12 以降を対象とするアプリではandroid:exported、対応するコンポーネントにインテント フィルタが定義されている場合に明示的な値を指定する必要があります。詳細については、https://developer.android.com/guide/topics/manifest/activity-element#exported を参照してください。Dairy.app メイン マニフェスト (このファイル) エラー: android:exported を明示的に指定する必要があります。Android 12 以降を対象とするアプリでは、明示的な値を指定する必要があります。android:exported対応するコンポーネントにインテント フィルタが定義されている場合。詳細については、https://developer.android.com/guide/topics/manifest/activity-element#exported を参照してください。Dairy.app メイン マニフェスト (このファイル)

4

8 に答える 8