項目常見依賴

1、ButterKnife--依賴注入findViewById

implementation 'com.jakewharton:butterknife:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'

2、BaseRecyclerViewAdapter--適配器

implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.50'

3、AndroidUtilCode--工具

implementation 'com.blankj:utilcodex:1.28.4'

Appplication類中添加:Utils.init(this);

4、PermissionsDispatcher--權限

implementation('com.github.hotchemi:permissionsdispatcher:3.3.1') {
    //if you don't use android.app.Fragment you can exclude support for them
    exclude module: 'support-v13'
}
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:3.3.1'

5、build.gradle 阿里雲鏡像

maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/jcenter' }

6、MagicScreenAdapter屏幕適配,原理解析

build.gradle(project) :

 dependencies {

    classpath 'cn.leo.plugin:magic-plugin:1.0.0' //java 用這個

    classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.0' //kotlin 

 }

 allprojects {

    repositories {

        maven { url 'https://jitpack.io' }   

    }
 }


build.gradle(app)

apply plugin: 'cn.leo.plugin.magic' //java 用這個
apply plugin: 'android-aspectjx'  //kotlin 用這個,編譯速度會慢點


dependencies {
    implementation 'com.github.jarryleo:MagicScreenAdapter:v1.5'
}

7、騰訊XLog

compile 'com.tencent.mars:mars-xlog:1.0.6'
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章