Files
android_device_Unihertz_Jelly2/ImsInit/AndroidManifest.xml
Matthias Leitl 56181bf3e5 Initial commit
2021-02-26 14:06:07 +01:00

20 lines
752 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.lineageos.unihertz.imsinit"
android:versionCode="1"
android:versionName="1.0"
android:sharedUserId="android.uid.phone">
<application
android:persistent="true">
<receiver android:name="org.lineageos.unihertz.imsinit.BootCompletedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<service android:name="org.lineageos.unihertz.imsinit.PhoneStateService"/>
</application>
</manifest>