Adds the possibility to declare different categories for resource overlays (e.g. themes, display cutout emulation, ...) Bug: 72436677 Test: adb shell cmd overlay enable-exclusive --category com.android.internal.display_cutout_emulation android com.android.internal.display.cutout.emulation.narrow Test: adb shell cmd overlay enable-exclusive --category com.android.internal.display_cutout_emulation android Change-Id: I23f22113351b3948beb9e3a1fb969700852539cc
11 lines
469 B
XML
11 lines
469 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.internal.display.cutout.emulation.narrow"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
<overlay android:targetPackage="android"
|
|
android:category="com.android.internal.display_cutout_emulation"
|
|
android:priority="1"/>
|
|
|
|
<application android:label="@string/display_cutout_emulation_overlay" android:hasCode="false"/>
|
|
</manifest>
|