41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
package="com.tengshisoft.gridclient">
|
||
|
||
<application
|
||
android:name=".BaseMyApplication"
|
||
android:allowBackup="true"
|
||
android:allowNativeHeapPointerTagging="false"
|
||
android:icon="@drawable/app_logo"
|
||
android:label="@string/app_name"
|
||
android:maxAspectRatio="2.4"
|
||
android:networkSecurityConfig="@xml/network_config"
|
||
android:requestLegacyExternalStorage="true"
|
||
android:resizeableActivity="true"
|
||
android:roundIcon="@drawable/app_logo"
|
||
android:supportsRtl="true"
|
||
android:theme="@style/AppTheme"
|
||
android:usesCleartextTraffic="true">
|
||
|
||
<!-- 配置APP ID -->
|
||
<meta-data
|
||
android:name="BUGLY_APPID"
|
||
android:value="09594f12ad" />
|
||
<!-- 配置APP版本号 -->
|
||
<meta-data
|
||
android:name="BUGLY_APP_VERSION"
|
||
android:value="1.0.0" />
|
||
<!-- 配置APP渠道号 -->
|
||
<meta-data
|
||
android:name="BUGLY_APP_CHANNEL"
|
||
android:value="68e6f412-277d-4e2a-9683-80dd0d35ac50" />
|
||
<!-- 配置Bugly调试模式(true或者false)-->
|
||
<meta-data
|
||
android:name="BUGLY_ENABLE_DEBUG"
|
||
android:value="false" />
|
||
<meta-data
|
||
android:name="android.max_aspect"
|
||
android:value="2.4" />
|
||
</application>
|
||
|
||
</manifest> |