blob: 2fc608c8519a4a6087a97bcc5f0474bc1d17f4b6 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.fairphone.moduledetect"
android:sharedUserId="android.uid.system"
android:versionCode="10101"
android:versionName="1.1.1">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<!-- System permission (requires platform signature) to start the calibration service. -->
<uses-permission android:name="com.fairphone.psensor.permission.CALIBRATE_PROXIMITY_SENSOR" />
<!-- System permission (requires platform signature) to start the camera swap service. -->
<uses-permission android:name="com.fairphone.cameraswapinfo.permission.HANDLE_CAMERA_CHANGED" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher_camera_swap"
android:label="@string/app_name"
android:supportsRtl="true">
<receiver
android:name=".BootUpReceiver"
android:enabled="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service android:name=".ModuleDetectIntentService" android:exported="false" />
</application>
</manifest>