mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-19 10:20:51 +02:00
55 lines
No EOL
2.3 KiB
XML
55 lines
No EOL
2.3 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">
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
<uses-permission android:name="android.permission.ACCESS_HIDDEN_PROFILES" />
|
|
|
|
|
|
<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/launcherBaseTheme">
|
|
|
|
<activity android:name=".HomeActivity"
|
|
android:exported="true"
|
|
android:excludeFromRecents="true"
|
|
android:clearTaskOnLaunch="true"
|
|
android:launchMode="singleTask"
|
|
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=".tutorial.TutorialActivity"
|
|
android:screenOrientation="portrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
</activity>
|
|
<activity android:name=".list.ListActivity"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustResize"
|
|
tools:ignore="LockedOrientationActivity">
|
|
</activity>
|
|
<activity android:name=".settings.SettingsActivity"
|
|
android:exported="true"
|
|
android:permission="android.permission.MANAGE_APP_PERMISSIONS"
|
|
android:screenOrientation="portrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest> |