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="com.android.alarm.permission.SET_ALARM" />
  6. <uses-permission android:name="android.permission.RECORD_AUDIO" />
  7. <application
  8. android:allowBackup="false"
  9. android:configChanges="orientation|keyboardHidden|screenSize"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="@string/app_name"
  12. android:roundIcon="@mipmap/ic_launcher_round"
  13. android:supportsRtl="true"
  14. android:theme="@style/AppTheme"
  15. tools:ignore="GoogleAppIndexingWarning"
  16. tools:replace="android:allowBackup">
  17. <activity
  18. android:name=".MainActivity"
  19. android:launchMode="singleTask"
  20. android:screenOrientation="portrait"
  21. android:stateNotNeeded="true">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.HOME" />
  25. <category android:name="android.intent.category.DEFAULT" />
  26. <category android:name="android.intent.category.LAUNCHER" />
  27. </intent-filter>
  28. </activity>
  29. </application>
  30. </manifest>