01-06 16:12:45.426 1079 1079 W PackageManager: Failed to parse /system/app/BatteryPreservation: /system/app/BatteryPreservation/BatteryPreservation.apk (at Binary XML file line #44): com.odm.batterypreservation.BootReceiver: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present
<receiver
android:name=".BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
需要显示声明 android:exported
属性
修改为以下:
<receiver
android:name=".BootReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
参考: