| | |
| | | <?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.READ_EXTERNAL_STORAGE" /> |
| | | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| | | <application |
| | | android:name=".MyApplication" |
| | | android:allowBackup="true" |
| | |
| | | android:fullBackupContent="@xml/backup_rules" |
| | | android:icon="@mipmap/ic_launcher" |
| | | android:label="@string/app_name" |
| | | android:supportsRtl="true" |
| | | android:theme="@style/Theme.Zhangshi_app_android" |
| | | android:usesCleartextTraffic="true" |
| | | android:maxAspectRatio="2.4" |
| | | android:networkSecurityConfig="@xml/network_security_config" |
| | | android:resizeableActivity="true" |
| | | android:maxAspectRatio="2.4" |
| | | tools:targetApi="31" > |
| | | |
| | | <!--沉浸式状态栏全面屏--> |
| | | android:supportsRtl="true" |
| | | android:theme="@style/Theme.app" |
| | | android:usesCleartextTraffic="true" |
| | | tools:targetApi="31"> |
| | | <!-- 沉浸式状态栏全面屏 --> |
| | | <meta-data |
| | | android:name="android.max_aspect" |
| | | android:value="2.4" /> |
| | | <!--适配华为(huawei)刘海屏--> |
| | | android:value="2.4" /> <!-- 适配华为(huawei)刘海屏 --> |
| | | <meta-data |
| | | android:name="android.notch_support" |
| | | android:value="true"/> |
| | | <!--适配小米(xiaomi)刘海屏--> |
| | | android:value="true" /> <!-- 适配小米(xiaomi)刘海屏 --> |
| | | <meta-data |
| | | android:name="notch.config" |
| | | android:value="portrait|landscape" /> |
| | | <!-- 屏幕适配 (默认以宽度适配)--> |
| | | <meta-data |
| | | android:name="design_width_in_dp" |
| | | android:value="360"/> |
| | | <meta-data |
| | | android:name="design_height_in_dp" |
| | | android:value="640"/> |
| | | |
| | | <activity |
| | | android:name=".module.main.MainActivity" |
| | | android:name=".ui.main.MainActivity" |
| | | android:exported="true"> |
| | | </activity> |
| | | <activity |
| | | android:name=".ui.login.LoginActivity" |
| | | android:exported="true" |
| | | android:screenOrientation="portrait" |
| | | > |
| | | <intent-filter> |
| | | <action android:name="android.intent.action.MAIN" /> |
| | | |
| | | <category android:name="android.intent.category.LAUNCHER" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <activity |
| | | android:name=".ui.function.FamilyMemorabiliaActivity" |
| | | android:exported="false" /> |
| | | <activity |
| | | android:name=".ui.function.CreateFamilyProjectActivity" |
| | | android:exported="false" /> |
| | | </application> |
| | | |
| | | |
| | | </manifest> |