Skip to content

Commit

Permalink
优化组件库
Browse files Browse the repository at this point in the history
  • Loading branch information
yangchong211 committed Jul 9, 2022
1 parent f8bf832 commit f45fd8f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
2 changes: 2 additions & 0 deletions AppCommonInter/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
apply plugin: 'com.android.library'
apply from: rootProject.projectDir.absolutePath + "/yc.gradle"
//迁移到jitpack
apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion rootProject.ext.android["compileSdkVersion"]
Expand Down
2 changes: 2 additions & 0 deletions AppStatusLib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apply plugin: 'com.android.library'
apply from: rootProject.projectDir.absolutePath + "/yc.gradle"
apply plugin: 'kotlin-android'
//迁移到jitpack
apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion rootProject.ext.android["compileSdkVersion"]
Expand Down
2 changes: 2 additions & 0 deletions ArchitectureLib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apply plugin: 'com.android.library'
apply from: rootProject.projectDir.absolutePath + "/yc.gradle"
apply plugin: 'kotlin-android'
//迁移到jitpack
apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion rootProject.ext.android["compileSdkVersion"]
Expand Down
18 changes: 15 additions & 3 deletions CommonBusiness/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,19 @@ dependencies {
//通用缓存存储库,支持sp,fastsp,mmkv,lruCache,DiskLruCache等
implementation 'com.github.yangchong211.YCCommonLib:AppBaseStore:1.3.0'
//通用日志输出库
implementation 'com.github.yangchong211.YCCommonLib:AppLogLib:1.3.0'
implementation 'com.github.yangchong211.YCCommonLib:AppLogLib:1.3.2'
//app重启库
implementation 'com.github.yangchong211.YCCommonLib:AppRestartLib:1.3.0'
implementation 'com.github.yangchong211.YCCommonLib:AppRestartLib:1.3.2'
//intent内容输出到控制台
implementation 'com.github.yangchong211.YCCommonLib:SafeIntentLib:1.3.0'
implementation 'com.github.yangchong211.YCCommonLib:SafeIntentLib:1.3.2'
//通用组件接口库
// implementation 'com.github.yangchong211.YCCommonLib:AppCommonInter:1.3.2'
// //各种广播监听哭
// implementation 'com.github.yangchong211.YCCommonLib:AppStatusLib:1.3.2'
// //基建库
// implementation 'com.github.yangchong211.YCCommonLib:ArchitectureLib:1.3.2'
// //同上上报库
// implementation 'com.github.yangchong211.YCCommonLib:EventUploadLib:1.3.2'

//公共类
// implementation project(path: ':BaseClassLib')
Expand All @@ -53,4 +61,8 @@ dependencies {
// implementation project(path: ':AppLogLib')
// implementation project(path: ':AppRestartLib')
// implementation project(path: ':SafeIntentLib')
// implementation project(path: ':AppCommonInter')
// implementation project(path: ':AppStatusLib')
// implementation project(path: ':ArchitectureLib')
// implementation project(path: ':EventUploadLib')
}
2 changes: 2 additions & 0 deletions EventUploadLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ plugins {
id 'com.android.library'
}
apply from: rootProject.projectDir.absolutePath + "/yc.gradle"
//迁移到jitpack
apply plugin: 'com.github.dcendents.android-maven'


android {
Expand Down

0 comments on commit f45fd8f

Please sign in to comment.