Live2D

Android常用jar下载地址以及implementation(依赖)(少的可怜,勿下!,勿看!,持续更新!。。。)

1.

SmartImageView

 http://loopj.com/android-smart-image-view/

2.AsyncHttpClient和gson的implementation

implementation 'com.loopj.android:android-async-http:1.4.11'
implementation 'com.google.code.gson:gson:2.8.6'

3.其他几个

链接:https://pan.baidu.com/s/11NkZvZxD2Xh0iyz-Ebn6jg 
提取码:gp6w 
复制这段内容后打开百度网盘手机App,操作更方便哦

Download antlr.jar : antlr « a « Jar File Download (java2s.com)

4.recyclerview与GridLayoutManager

implementation "androidx.recyclerview:recyclerview:1.1.0"

5.fresco

github:https://github.com/facebook/fresco

implementation 'com.facebook.fresco:fresco:2.4.0'

6.GreenDao

//build.gradle(project)
buildscript {
    repositories {
        jcenter()
        mavenCentral() // add repository
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' // add plugin
    }
}

//build.gradle(Module)

apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao' // apply plugin
 
dependencies {
    implementation 'org.greenrobot:greendao:3.3.0' // add library
}
posted @ 2020-12-22 11:32  幽香飞狐  阅读(974)  评论(0)    收藏  举报
Live2D