AndroidManifest.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  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. <uses-permission android:name="android.permission.INTERNET" />
  5. <application
  6. android:name=".WeatherApp"
  7. android:allowBackup="true"
  8. android:dataExtractionRules="@xml/data_extraction_rules"
  9. android:fullBackupContent="@xml/backup_rules"
  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/Theme.Weather"
  15. tools:targetApi="31">
  16. <activity
  17. android:name=".ui.MainActivity"
  18. android:exported="true"
  19. android:theme="@style/Theme.Weather">
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN" />
  22. <category android:name="android.intent.category.LAUNCHER" />
  23. </intent-filter>
  24. </activity>
  25. </application>
  26. </manifest>