blob: 998295fba258f0d60cdbf38c7165f38694e46476 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.fairphone.cameraswapinfo"
android:versionCode="10101"
android:versionName="1.1.1">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<permission
android:name="com.fairphone.cameraswapinfo.permission.HANDLE_CAMERA_CHANGED"
android:protectionLevel="signature"/>
<!-- This permission is enforced on both sides, sending (ModuleDetect) and receiving
(CameraSwapInfo), therefore we need to declare uses-permission on it as well. -->
<uses-permission android:name="com.fairphone.cameraswapinfo.permission.HANDLE_CAMERA_CHANGED" />
<application
android:name=".App"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher_camera_swap"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<receiver
android:name=".receivers.BootUpReceiver"
android:enabled="true"
android:exported="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<activity android:name=".CameraSwapDetailsActivity"
android:enabled="true"
android:theme="@style/Theme.Setup">
<intent-filter android:priority="1">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>