50 lines
1.9 KiB
XML
50 lines
1.9 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">
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:name=".TiangongApp"
|
||
|
|
android:allowBackup="true"
|
||
|
|
android:icon="@mipmap/ic_launcher"
|
||
|
|
android:label="@string/app_name"
|
||
|
|
android:supportsRtl="true"
|
||
|
|
android:theme="@style/Theme.TiangongAgent"
|
||
|
|
android:usesCleartextTraffic="true"
|
||
|
|
tools:targetApi="34">
|
||
|
|
|
||
|
|
<!-- Bugly crash reporting -->
|
||
|
|
<meta-data
|
||
|
|
android:name="BUGLY_APPID"
|
||
|
|
android:value="babf4cb53e" />
|
||
|
|
<meta-data
|
||
|
|
android:name="BUGLY_APP_KEY"
|
||
|
|
android:value="c62623aa-cd02-4dcc-a820-23468a201f76" />
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name=".MainActivity"
|
||
|
|
android:exported="true"
|
||
|
|
android:theme="@style/Theme.TiangongAgent.Splash">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
|
||
|
|
<!-- Firebase Cloud Messaging — requires google-services.json in app/ -->
|
||
|
|
<service
|
||
|
|
android:name=".util.TiangongFirebaseMessagingService"
|
||
|
|
android:exported="false">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||
|
|
</intent-filter>
|
||
|
|
</service>
|
||
|
|
|
||
|
|
</application>
|
||
|
|
</manifest>
|