vendor_hardware_overlay/Qualcomm/QtiAudio/AndroidManifest.xml
2018-06-07 16:39:09 +02:00

17 lines
470 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.phh.qti.audio"
android:sharedUserId="android.uid.system"
android:persistent="true">
<application
android:label="@string/app_label">
<receiver android:name=".Starter">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name=".Service" />
</application>
</manifest>