emotionhero/app/src/main/AndroidManifest.xml

107 lines
4.5 KiB
XML
Raw Normal View History

2016-08-16 19:25:28 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.rubenvandeven.emotionhero">
2016-08-22 16:47:35 +02:00
<uses-permission android:name="android.permission.CAMERA" />
2016-09-01 15:23:30 +02:00
<uses-permission android:name="android.permission.INTERNET" />
2016-08-16 19:25:28 +02:00
2016-10-05 15:25:05 +02:00
<!--Kiosk Mode-->
<uses-permission android:name="android.permission.REORDER_TASKS" />
2016-10-05 15:25:05 +02:00
<uses-permission android:name="android.permission.WAKE_LOCK" />
2020-01-28 21:36:25 +01:00
<uses-permission android:name="android.permission.READ_LOGS"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
2016-08-16 19:25:28 +02:00
<application
2016-10-05 15:25:05 +02:00
android:name=".AppContext"
2016-08-16 19:25:28 +02:00
android:allowBackup="true"
2016-08-22 16:47:35 +02:00
android:hardwareAccelerated="true"
2016-08-16 19:25:28 +02:00
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
2016-08-17 19:21:16 +02:00
android:theme="@style/AppTheme"
2016-10-05 15:25:05 +02:00
android:keepScreenOn="true"
2016-08-22 16:47:35 +02:00
tools:replace="android:allowBackup,android:label">
2016-08-16 19:25:28 +02:00
<activity
android:name=".GamingActivity"
android:screenOrientation="portrait"
2016-08-16 19:25:28 +02:00
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme">
2016-08-22 16:47:35 +02:00
</activity>
<activity
android:name=".IntroActivity"
android:screenOrientation="portrait"
android:configChanges="orientation"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme">
2016-08-16 19:25:28 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
2016-08-16 19:25:28 +02:00
<category android:name="android.intent.category.LAUNCHER" />
2016-08-16 19:25:28 +02:00
</intent-filter>
</activity>
<activity
android:name=".HighscoreActivity"
android:label="@string/title_activity_highscore"
android:screenOrientation="portrait"
android:configChanges="orientation"
android:parentActivityName=".ProgressActivity"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.rubenvandeven.emotionhero.ProgressActivity" />
</activity>
<activity
android:name=".CreditsActivity"
android:screenOrientation="portrait"
android:configChanges="orientation"
2017-09-20 08:38:15 +02:00
android:theme="@style/FullscreenTheme">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.rubenvandeven.emotionhero.MirrorMenuActivity" />
</activity>
<activity
android:name=".ReviewActivity"
2016-09-21 15:58:49 +02:00
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:configChanges="orientation"
android:theme="@style/AppTheme.NoActionBar" />
2016-09-10 16:51:34 +02:00
<activity android:name=".MirrorMenuActivity" />
<activity
android:name=".ReviewAchievementsActivity"
android:screenOrientation="portrait"
android:configChanges="orientation"
android:theme="@style/AchievementTheme">
2016-09-10 16:51:34 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.rubenvandeven.emotionhero.ReviewActivity" />
</activity>
<activity android:name=".ProgressActivity"
android:screenOrientation="portrait"
android:configChanges="orientation">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.rubenvandeven.emotionhero.MirrorMenuActivity" />
</activity>
<activity android:name=".EndingActivity"
android:screenOrientation="portrait"
android:configChanges="orientation"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.rubenvandeven.emotionhero.ProgressActivity" /></activity>
2016-10-05 15:25:05 +02:00
<receiver android:name=".BootReceiver">
<intent-filter >
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
2016-08-16 19:25:28 +02:00
</application>
</manifest>