41 lines
1.2 KiB
XML
41 lines
1.2 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:supportsRtl="true"
|
|
android:theme="@style/AppTheme.App"
|
|
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}" />
|
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest> |