<!-- 原因:As of Android 12, android:exported must be set; use true to make the activity available to other apps, and false otherwise. For launcher activities, this should be set to true.-->
<!-- 移除:android:label="@string/app_name"-->
<!-- 原因:Redundant label can be removed.(冗余标签可以移除,第41行已经给出)-->
@ -60,9 +57,6 @@
</intent-filter>
</activity>
<!-- 添加:android:exported="true" -->
<!-- 原因: As of Android 12, android:exported must be set; use true to make the activity available to other apps, and false otherwise. For launcher activities, this should be set to true.-->
<!-- 原因: As of Android 12, android:exported must be set; use true to make the activity available to other apps, and false otherwise. For launcher activities, this should be set to true.-->
<receiver
android:name=".widget.NoteWidgetProvider_2x"
@ -122,9 +112,6 @@
android:resource="@xml/widget_2x_info" />
</receiver>
<!-- 添加:android:exported="true" -->
<!-- 原因: As of Android 12, android:exported must be set; use true to make the activity available to other apps, and false otherwise. For launcher activities, this should be set to true.-->
<receiver
android:name=".widget.NoteWidgetProvider_4x"
@ -142,9 +129,6 @@
android:resource="@xml/widget_4x_info" />
</receiver>
<!-- 添加:android:exported="true" -->
<!-- 原因: As of Android 12, android:exported must be set; use true to make the activity available to other apps, and false otherwise. For launcher activities, this should be set to true.-->
<receiverandroid:name=".ui.AlarmInitReceiver"
android:exported="true">
@ -158,9 +142,6 @@
android:process=":remote" >
</receiver>
<!-- 移除:android:label="@string/app_name"-->
<!-- 原因:Redundant label can be removed.(冗余标签可以移除,第41行已经给出)-->