Modify: 组件化基本模块实现
This commit is contained in:
5
Lib_Base/src/main/AndroidManifest.xml
Normal file
5
Lib_Base/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.quyunshuo.base">
|
||||
|
||||
/
|
||||
</manifest>
|
||||
12
Lib_Base/src/main/java/com/quyunshuo/base/BaseApplication.kt
Normal file
12
Lib_Base/src/main/java/com/quyunshuo/base/BaseApplication.kt
Normal 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() {
|
||||
}
|
||||
6
Lib_Base/src/main/res/values/colors.xml
Normal file
6
Lib_Base/src/main/res/values/colors.xml
Normal 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>
|
||||
11
Lib_Base/src/main/res/values/styles.xml
Normal file
11
Lib_Base/src/main/res/values/styles.xml
Normal 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>
|
||||
Reference in New Issue
Block a user