gridclient/app/src/main/AndroidManifest.xml
2022-03-25 15:24:43 +08:00

41 lines
1.4 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>