Modify: 组件化基本模块实现

This commit is contained in:
Quyunshuo
2020-08-27 16:17:26 +08:00
parent 05e8604eb3
commit 2d04aa7824
37 changed files with 349 additions and 70 deletions

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.quyunshuo.main">
<application
android:name="com.quyunshuo.base.BaseApplication"
android:allowBackup="true"
android:label="@string/main_app_name"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>