blob: 26ca98b405bce468546a7299e27d6c45b718a197 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.fairphone.privacyimpact"
android:versionCode="1"
android:versionName="1.0"
coreApp="true"
android:sharedUserId="android.uid.system">
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.ACCESS_NOTIFICATIONS" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme">
<activity
android:name="com.fairphone.privacyimpact.ApplicationSampleLauncher"
android:label="@string/activity_sample_launcher"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name="com.fairphone.privacyimpact.GrantAccessActivity"
android:autoRemoveFromRecents="true"
android:clearTaskOnLaunch="true"
android:excludeFromRecents="true"
android:label="@string/app_name"
android:launchMode="singleTop"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name="com.fairphone.privacyimpact.PrivacyImpactPreferenceActivity"
android:autoRemoveFromRecents="true"
android:clearTaskOnLaunch="true"
android:excludeFromRecents="true"
android:label="@string/activity_set_preference_name"
android:icon="@drawable/ic_settings_black_48dp"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>