44 lines
No EOL
1.6 KiB
XML
44 lines
No EOL
1.6 KiB
XML
<?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">
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:hardwareAccelerated="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
tools:replace="android:allowBackup,android:label">
|
|
<activity
|
|
android:name=".GamingActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/FullscreenTheme">
|
|
|
|
<!-- <intent-filter> -->
|
|
<!-- <action android:name="android.intent.action.MAIN" /> -->
|
|
|
|
|
|
<!-- <category android:name="android.intent.category.LAUNCHER" /> -->
|
|
<!-- </intent-filter> -->
|
|
</activity>
|
|
<activity
|
|
android:name=".IntroActivity"
|
|
android:theme="@style/FullscreenTheme"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".MenuActivity"
|
|
android:theme="@style/FullscreenTheme"
|
|
android:label="@string/app_name"></activity>
|
|
</application>
|
|
|
|
</manifest> |