blob: 00922068612c752df1b13af2741c58dbe4e7e376 [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:versionCode="10101"
android:versionName="1.1.1">
<uses-sdk android:targetSdkVersion="28" android:minSdkVersion="28"/>
<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" />
<!-- Permission to tell (third party) camera apps to reset their camera preferences. -->
<permission
android:name="com.fairphone.permission.CAMERA_PREFERENCES_WIPE"
android:protectionLevel="normal" />
<uses-permission android:name="com.fairphone.permission.CAMERA_PREFERENCES_WIPE" />
<application
android:allowBackup="false"
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>
</application>
</manifest>