android_device_oneplus_sm81.../camera_helper/AndroidManifest.xml

35 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.lineageos.camerahelper"
android:versionCode="1"
android:versionName="1.0"
android:sharedUserId="android.uid.system">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="21"/>
<application
android:label="OnePlusCameraHelper"
android:persistent="true">
<receiver android:name="org.lineageos.camerahelper.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.camerahelper.CameraMotorService"
android:permission="OnePlusCameraHelperService">
</service>
<service android:name="org.lineageos.camerahelper.FallSensorService"
android:permission="OnePlusCameraHelperService">
</service>
</application>
</manifest>