mirror of
https://github.com/cmclark00/mintris.git
synced 2025-05-21 00:55:19 +01:00
39 lines
No EOL
1.4 KiB
XML
39 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Mintris">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/Theme.Mintris.NoActionBar">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".HighScoreEntryActivity"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
android:name=".HighScoresActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar" />
|
|
|
|
<activity
|
|
android:name=".StatsActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar" />
|
|
</application>
|
|
</manifest> |