AndroidManifest.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.sduduzog.slimlauncher">
  5. <uses-permission android:name="android.permission.SET_ALARM" />
  6. <application
  7. android:allowBackup="false"
  8. android:configChanges="orientation|keyboardHidden|screenSize"
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="@string/app_name"
  11. android:roundIcon="@mipmap/ic_launcher_round"
  12. android:supportsRtl="true"
  13. android:theme="@style/AppTheme"
  14. tools:ignore="GoogleAppIndexingWarning"
  15. tools:replace="android:allowBackup">
  16. <activity
  17. android:name=".MainActivity"
  18. android:launchMode="singleTask"
  19. android:screenOrientation="portrait"
  20. android:stateNotNeeded="true">
  21. <intent-filter>
  22. <action android:name="android.intent.action.MAIN" />
  23. <category android:name="android.intent.category.HOME" />
  24. <category android:name="android.intent.category.DEFAULT" />
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28. </application>
  29. </manifest>