| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.trace.location">
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.READ_CONTACTS" />
- <queries>
- <intent>
- <action android:name="android.intent.action.DIAL" />
- <data android:scheme="tel" />
- </intent>
- </queries>
- <application
- android:name="${applicationName}"
- android:allowBackup="false"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name">
- <activity
- android:name=".MainActivity"
- android:exported="true"
- android:hardwareAccelerated="true"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:taskAffinity="${applicationId}"
- android:theme="@style/LaunchTheme"
- android:windowSoftInputMode="adjustResize">
- <!-- Specifies an Android theme to apply to this Activity as soon as
- the Android process has started. This theme is visible to the user
- while the Flutter UI initializes. After that, this theme continues
- to determine the Window background behind the Flutter UI. -->
- <meta-data
- android:name="io.flutter.embedding.android.NormalTheme"
- android:resource="@style/NormalTheme" />
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <meta-data
- android:name="com.amap.api.v2.apikey"
- android:value="87c05f5796ee36ff2ab257fa19c28d86" />
- <meta-data
- android:name="UMENG_APPKEY"
- android:value="67e11d9b48ac1b4f87f56ea2" />
- <meta-data
- android:name="flutterEmbedding"
- android:value="2" />
- </application>
- <!-- Required to query activities that can process text, see:
- https://developer.android.com/training/package-visibility and
- https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
- In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
- <queries>
- <intent>
- <action android:name="android.intent.action.PROCESS_TEXT" />
- <data android:mimeType="text/plain" />
- </intent>
- </queries>
- </manifest>
|