mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-27 23:46:14 -04:00
28 lines
No EOL
1 KiB
XML
28 lines
No EOL
1 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">
|
|
<application
|
|
android:requestLegacyExternalStorage="true"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@drawable/icon"
|
|
android:roundIcon="@drawable/icon"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
tools:targetApi="31">
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
android:screenOrientation="portrait"
|
|
android:exported="true"
|
|
android:label="Breakout 71">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest> |