android_packages_apps_QcRilAm/AndroidManifest.xml
oshmoun d0e1cf6a93 QcRilAm: An app to handle QcRilAudio callbacks
This app simply communicates with the vendor.qti.hardware.radio.am hal and sets the callbacks required for functional incall audio.
The interface definition of the hal was taken from:
https://github.com/phhusson/treble_experimentations/tree/master/interfaces/vendor/qti/hardware/radio/am/1.0
2018-11-15 11:30:44 +01:00

23 lines
927 B
XML
Executable file

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
coreApp="true"
package="com.sony.qcrilam"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="26"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:persistent="true" android:directBootAware="true" >
<service android:name=".QcRilAmService" />
<receiver android:name=".BootReceiver" android:enabled="true" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>