139 lines
4.8 KiB
XML
139 lines
4.8 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.WRITE_EXTERNAL_STORAGE" />
|
||
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
||
|
|
|
||
|
|
<uses-permission
|
||
|
|
android:name="android.permission.WRITE_SETTINGS"
|
||
|
|
tools:ignore="ProtectedPermissions"
|
||
|
|
/>
|
||
|
|
|
||
|
|
|
||
|
|
<!--背景服务-->
|
||
|
|
<!-- <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />-->
|
||
|
|
<!-- <uses-permission-->
|
||
|
|
<!-- android:name="android.permission.INSTANT_APP_FOREGROUND_SERVICE"-->
|
||
|
|
<!-- tools:ignore="ProtectedPermissions" />-->
|
||
|
|
<!-- <uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY" />-->
|
||
|
|
|
||
|
|
<uses-permission
|
||
|
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
||
|
|
tools:ignore="ScopedStorage"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:name="com.tfq.finances.app.App"
|
||
|
|
android:allowBackup="false"
|
||
|
|
android:icon="${app_icon}"
|
||
|
|
android:label="@string/app_name"
|
||
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
||
|
|
android:requestLegacyExternalStorage="true"
|
||
|
|
android:supportsRtl="true"
|
||
|
|
android:theme="@style/AppTheme.Main"
|
||
|
|
android:usesCleartextTraffic="true"
|
||
|
|
tools:replace="android:allowBackup"
|
||
|
|
>
|
||
|
|
<meta-data
|
||
|
|
android:name="UMENG_CHANNEL"
|
||
|
|
android:value="${UMENG_CHANNEL_VALUE}"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.Activity_Splash"
|
||
|
|
android:exported="true"
|
||
|
|
android:label="@string/app_name"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
android:theme="@style/SplashTheme"
|
||
|
|
tools:replace="android:screenOrientation"
|
||
|
|
>
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.Activity_Main"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_Tw"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_PbFeedback"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_WebView"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_About"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_Font"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_About_Us"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.finances.activity.Activity_Detail_Add"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.finances.activity.Activity_Login"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
tools:ignore="DiscouragedApi,LockedOrientationActivity"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.finances.activity.Activity_Transactions"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.finances.activity.Activity_Budgets"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.finances.activity.Activity_Setting_More"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.tfq.finances.main.activity.Activity_Export"
|
||
|
|
android:screenOrientation="portrait"
|
||
|
|
/>
|
||
|
|
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|