# Conflicts: # app/build.gradle # app/src/main/AndroidManifest.xml # core/mogo-core-function-call/build.gradle
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.mogo.launcher">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
|
|
<application
|
|
android:name=".MogoApplication"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_shell_name"
|
|
android:largeHeap="true"
|
|
android:resizeableActivity="false"
|
|
android:requestLegacyExternalStorage="true"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme.App"
|
|
android:usesCleartextTraffic="true"
|
|
tools:replace="android:label">
|
|
|
|
<!-- 配置APP ID -->
|
|
<meta-data
|
|
android:name="BUGLY_APPID"
|
|
android:value="ac71228f85" />
|
|
<!-- 配置APP渠道号 -->
|
|
<meta-data
|
|
android:name="BUGLY_APP_CHANNEL"
|
|
android:value="${CHANNEL_VALUE}" />
|
|
|
|
<meta-data
|
|
android:name="com.amap.api.v2.apikey"
|
|
android:value="${AMAP_API_VALUE}" />
|
|
|
|
<meta-data
|
|
android:name="MAP_SDK_VERSION"
|
|
android:value="${MAP_SDK_VERSION}" />
|
|
|
|
<!-- 自动驾驶业务埋点上报URL -->
|
|
<meta-data
|
|
android:name="com.elegant.analytics.AnalyticsConfig.EventsEndpoint"
|
|
android:value="https://bdlog.zhidaozhixing.com/autocar" />
|
|
<meta-data
|
|
android:name="com.elegant.analytics.AnalyticsConfig.EventsFallbackEndpoint"
|
|
android:value="https://bdlog.zhidaozhixing.com/autocar" />
|
|
|
|
|
|
</application>
|
|
|
|
</manifest> |