合并来自bimromatic/master的拉取请求#8

1:增加AndroidManifest合并替换标签
2:增加isAppMode判断
This commit is contained in:
Quyunshuo
2021-04-30 17:38:45 +08:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@ -19,7 +19,8 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/base_AppTheme"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute"
tools:replace="android:name,android:label,android:icon, android:theme,android:allowBackup">
<!-- 屏幕适配基准DP -->
<meta-data

View File

@ -4,7 +4,12 @@
import com.quyunshuo.androidbaseframemvvm.buildsrc.*
apply plugin: 'com.android.library'
if (ProjectBuildConfig.isAppMode){
apply plugin: 'com.android.application'
}else {
apply plugin: 'com.android.library'
}
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'