mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-23 22:41:27 +01:00
40 lines
No EOL
1.6 KiB
XML
40 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.finnmglas.launcher">
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
|
|
<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/AppTheme">
|
|
|
|
<activity android:name=".MainActivity"
|
|
android:screenOrientation="portrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.HOME" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".FirstStartupActivity"
|
|
android:screenOrientation="portrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
</activity>
|
|
<activity android:name=".ChooseActivity"
|
|
android:screenOrientation="portrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
</activity>
|
|
<activity android:name=".SettingsActivity"
|
|
android:screenOrientation="portrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |