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,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.quyunshuo.base">
/
</manifest>

View File

@ -0,0 +1,12 @@
package com.quyunshuo.base
import android.app.Application
/**
* @Author: QuYunShuo
* @Time: 2020/8/27
* @Class: BaseApplication
* @Remark: 自定义Application的基类
*/
open class BaseApplication : Application() {
}

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#6200EE</color>
<color name="colorPrimaryDark">#3700B3</color>
<color name="colorAccent">#03DAC5</color>
</resources>

View File

@ -0,0 +1,11 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>