Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. package="com.icp.tower">
  4. <uses-permission android:name="android.permission.INTERNET" />
  5. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  6. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  7. <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
  8. <application
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="POC Bakti"
  11. android:usesCleartextTraffic="true"
  12. tools:targetApi="m">
  13. <meta-data android:name="com.google.android.geo.API_KEY"
  14. android:value="YOUR-KEY-HERE"/>
  15. <activity
  16. android:name=".MainActivity"
  17. android:showWhenLocked="true"
  18. android:turnScreenOn="true"
  19. android:screenOrientation="portrait"
  20. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  21. android:exported="true"
  22. android:hardwareAccelerated="true"
  23. android:launchMode="singleTop"
  24. android:theme="@style/LaunchTheme"
  25. android:windowSoftInputMode="adjustResize"
  26. tools:ignore="LockedOrientationActivity">
  27. <!-- Specifies an Android theme to apply to this Activity as soon as
  28. the Android process has started. This theme is visible to the user
  29. while the Flutter UI initializes. After that, this theme continues
  30. to determine the Window background behind the Flutter UI. -->
  31. <meta-data
  32. android:name="io.flutter.embedding.android.NormalTheme"
  33. android:resource="@style/NormalTheme" />
  34. <intent-filter>
  35. <action android:name="FLUTTER_NOTIFICATION_CLICK"/>
  36. <category android:name="android.intent.category.DEFAULT"/>
  37. </intent-filter>
  38. <intent-filter>
  39. <action android:name="android.intent.action.MAIN" />
  40. <category android:name="android.intent.category.LAUNCHER" />
  41. </intent-filter>
  42. </activity>
  43. <!-- Don't delete the meta-data below.
  44. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  45. <meta-data
  46. android:name="flutterEmbedding"
  47. android:value="2" />
  48. <meta-data
  49. android:name="com.google.firebase.messaging.default_notification_channel_id"
  50. android:value="high_importance_channel" />
  51. </application>
  52. </manifest>