hardware_motorola/MotoNrEnabler/AndroidManifest.xml

30 lines
965 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2024 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.lineageos.motorola.nrenabler"
android:sharedUserId="android.uid.phone">
<uses-permission android:name="com.qualcomm.permission.USE_QCRIL_MSG_TUNNEL" />
<application
android:label="MotoNrEnabler"
android:persistent="true"
android:directBootAware="true">
<service
android:name=".NrEnablerService" />
<receiver
android:name=".BootCompletedReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>