2020-08-26 17:29:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-29 16:01:33 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-08-26 17:29:44 +08:00
|
|
|
package="com.quyunshuo.androidbaseframemvvm">
|
|
|
|
|
|
2020-08-29 16:01:33 +08:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
|
<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_LOGS"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
|
2020-08-26 17:29:44 +08:00
|
|
|
<application
|
2020-08-27 16:17:26 +08:00
|
|
|
android:name=".AppApplication"
|
2020-08-26 17:29:44 +08:00
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
2020-08-29 16:14:21 +08:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2020-08-26 17:29:44 +08:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
2020-08-29 16:14:21 +08:00
|
|
|
android:theme="@style/base_AppTheme"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
2020-09-26 15:23:19 +08:00
|
|
|
<activity
|
|
|
|
|
android:name="com.quyunshuo.base.mvvm.v.MyActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/base_AppTheme">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2020-08-29 09:54:59 +08:00
|
|
|
<!-- 屏幕适配基准DP -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_width_in_dp"
|
|
|
|
|
android:value="360" />
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_height_in_dp"
|
|
|
|
|
android:value="640" />
|
2020-08-28 20:01:45 +08:00
|
|
|
</application>
|
2020-08-26 17:29:44 +08:00
|
|
|
|
|
|
|
|
</manifest>
|