Add AndroidManifest.xml to both overlays

This commit is contained in:
oxmc
2026-06-03 00:37:39 -07:00
parent 5c8a24c691
commit dd16b6e06f
4 changed files with 53 additions and 1 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ cc_binary {
],
shared_libs: [
"android.hardware.boot-V3-ndk",
"android.hardware.boot-V1-ndk",
"libbase",
"libbinder_ndk",
"liblog",
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025-2026 oxmc / PawletOS
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.pawlet.overlay.framework.runtime">
<overlay
android:targetPackage="android"
android:priority="1" />
<application
android:label="PawletOS Framework Overlay"
android:hasCode="false" />
</manifest>
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025-2026 oxmc / PawletOS
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.pawlet.overlay.rpi.framework">
<overlay
android:targetPackage="android"
android:priority="2" />
<application
android:label="PawletOS RPi Framework Overlay"
android:hasCode="false" />
</manifest>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025-2026 oxmc / PawletOS
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.pawlet.overlay.framework">
<overlay
android:targetPackage="android"
android:isStatic="true"
android:priority="1" />
<application
android:label="PawletOS Framework Overlay"
android:hasCode="false" />
</manifest>