當對應元件定義了意圖過濾器時,Android 12 要求您明確指定 android:exported 的明確值。要解決此問題,您需要將清單檔案中的所有活動的 android:exported 屬性設為「false」。
以下範例說明如何將android:exported 屬性設為「false」 Activity:
<activity android:name=".ui.GroupSearchActivity" android:exported="false" />
將清單檔案中所有活動的android:exported 屬性設為「false」後,錯誤應該會消失。
以上是如何修復 Android 12 中的「android:exported」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!