Files
hardware_nothing/GlyphAdapter/AndroidManifest.xml
Eugene Lepshy c348fcb7b4 Implement GlyphAdapter for thirdparty apps
Thirdparty apps like glyphcomposer only send data to an app with a package name of com.nothing.thirdparty, so we'll implement an app that will receive data and then send it to ParanoidGlyph

Change-Id: I2bf88d6481af49dcac5567c6ea7577a083229132
2025-03-01 17:07:14 +00:00

39 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2025 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nothing.thirdparty"
android:versionCode="1"
android:versionName="1.0"
android:sharedUserId="android.uid.system">
<application
android:label="GlyphAdapter"
android:persistent="true"
android:defaultToDeviceProtectedStorage="true"
android:enableOnBackInvokedCallback="true"
android:directBootAware="true">
<service
android:name=".GlyphService"
android:exported="true">
<intent-filter>
<action android:name="com.nothing.thirdparty.IGlyphService"/>
</intent-filter>
</service>
<receiver
android:name=".BootCompleteReceiver"
android:exported="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>