AndroidManifest.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <application
  6. android:allowBackup="false"
  7. android:configChanges="orientation|keyboardHidden|screenSize"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/AppTheme"
  13. tools:ignore="GoogleAppIndexingWarning"
  14. tools:replace="android:allowBackup">
  15. <activity
  16. android:name=".MainActivity"
  17. android:launchMode="singleTask"
  18. android:screenOrientation="portrait"
  19. android:stateNotNeeded="true">
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN" />
  22. <category android:name="android.intent.category.HOME" />
  23. <category android:name="android.intent.category.DEFAULT" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. <provider
  28. android:name="androidx.core.content.FileProvider"
  29. android:authorities="@string/app_authority_for_file_provider"
  30. android:exported="false"
  31. android:grantUriPermissions="true">
  32. <meta-data
  33. android:name="android.support.FILE_PROVIDER_PATHS"
  34. android:resource="@xml/filepaths" />
  35. </provider>
  36. </application>
  37. </manifest>