cbd81cde70
Originally this patch is made for Galaxy Tab S5e But I cherry-picked this to our Galaxy Tab S3 device comes with editing the parameter key, values. Thanks LuK1337 for this amazing patch. Change-Id: Ibc053edf1fa7e797f6457dfead416b177da57ab6
30 lines
1 KiB
XML
30 lines
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lineageos.audiorotationmonitor"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="21"
|
|
android:targetSdkVersion="21" />
|
|
|
|
<application
|
|
android:label="AudioRotationMonitor"
|
|
android:persistent="true">
|
|
|
|
<receiver android:name="org.lineageos.audiorotationmonitor.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.audiorotationmonitor.DisplayListenerService"
|
|
android:permission="AudioRotationMonitorService">
|
|
</service>
|
|
|
|
</application>
|
|
</manifest>
|