AndroidManifest.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.trace.location">
  3. <uses-permission android:name="android.permission.INTERNET" />
  4. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  5. <uses-permission android:name="android.permission.READ_CONTACTS" />
  6. <queries>
  7. <intent>
  8. <action android:name="android.intent.action.DIAL" />
  9. <data android:scheme="tel" />
  10. </intent>
  11. </queries>
  12. <application
  13. android:name="${applicationName}"
  14. android:allowBackup="false"
  15. android:icon="@mipmap/ic_launcher"
  16. android:label="@string/app_name">
  17. <activity
  18. android:name=".MainActivity"
  19. android:exported="true"
  20. android:hardwareAccelerated="true"
  21. android:launchMode="singleTask"
  22. android:screenOrientation="portrait"
  23. android:taskAffinity="${applicationId}"
  24. android:theme="@style/LaunchTheme"
  25. android:windowSoftInputMode="adjustResize">
  26. <!-- Specifies an Android theme to apply to this Activity as soon as
  27. the Android process has started. This theme is visible to the user
  28. while the Flutter UI initializes. After that, this theme continues
  29. to determine the Window background behind the Flutter UI. -->
  30. <meta-data
  31. android:name="io.flutter.embedding.android.NormalTheme"
  32. android:resource="@style/NormalTheme" />
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. <meta-data
  39. android:name="com.amap.api.v2.apikey"
  40. android:value="87c05f5796ee36ff2ab257fa19c28d86" />
  41. <meta-data
  42. android:name="UMENG_APPKEY"
  43. android:value="67e11d9b48ac1b4f87f56ea2" />
  44. <meta-data
  45. android:name="flutterEmbedding"
  46. android:value="2" />
  47. </application>
  48. <!-- Required to query activities that can process text, see:
  49. https://developer.android.com/training/package-visibility and
  50. https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
  51. In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
  52. <queries>
  53. <intent>
  54. <action android:name="android.intent.action.PROCESS_TEXT" />
  55. <data android:mimeType="text/plain" />
  56. </intent>
  57. </queries>
  58. </manifest>