Add AndroidManifest.xml to both overlays
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user