2025-03-26 12:44:00 -04:00
|
|
|
<?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>
|
2025-03-27 00:27:44 -04:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".HighScoreEntryActivity"
|
|
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".HighScoresActivity"
|
2025-03-27 17:07:47 -04:00
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.AppCompat.NoActionBar" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".StatsActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.AppCompat.NoActionBar" />
|
2025-03-26 12:44:00 -04:00
|
|
|
</application>
|
|
|
|
</manifest>
|