Modify: 添加Common项目相关公共组件
This commit is contained in:
@ -27,6 +27,8 @@ android {
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
||||
}
|
||||
|
||||
resourcePrefix "base_"
|
||||
}
|
||||
|
||||
kapt {
|
||||
|
||||
@ -1,5 +1 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.quyunshuo.base">
|
||||
|
||||
/
|
||||
</manifest>
|
||||
<manifest package="com.quyunshuo.base" />
|
||||
@ -1,6 +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>
|
||||
<color name="base_colorPrimary">#6200EE</color>
|
||||
<color name="base_colorPrimaryDark">#3700B3</color>
|
||||
<color name="base_colorAccent">#03DAC5</color>
|
||||
</resources>
|
||||
@ -1,11 +1,11 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
<style name="base_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>
|
||||
<item name="colorPrimary">@color/base_colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/base_colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/base_colorAccent</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user