apply plugin: 'com.android.library' android { compileSdkVersion 26 defaultConfig { minSdkVersion 21 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:26.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' //okhttp implementation 'com.squareup.okhttp3:okhttp:3.9.1' //FastJson implementation 'com.alibaba:fastjson:1.2.41' //轮播图 implementation 'com.bigkoo:convenientbanner:2.0.5' //图片流缓存 implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' //圆形图片 implementation 'com.github.siyamed:android-shape-imageview:0.9.+@aar' //滑动Tabs implementation 'com.ogaclejapan.smarttablayout:library:1.6.1@aar' implementation 'com.ogaclejapan.smarttablayout:utils-v13:1.6.1@aar' //MD 对话框 implementation 'me.drakeet.materialdialog:library:1.3.1' //载入界面 implementation 'com.kaopiz:kprogresshud:1.1.0' //文件选择器 implementation 'com.leon:lfilepickerlibrary:1.4.0' //富文本 implementation 'com.github.limedroid:XRichText:v1.0.0' //底端对话框 implementation 'com.orhanobut:dialogplus:1.11@aar' //二维码扫描 implementation 'com.dlazaro66.qrcodereaderview:qrcodereaderview:2.0.3' //底端菜单 implementation 'me.majiajie:pager-bottom-tab-strip:2.2.5' //刷新载入 implementation project(path: ':RefreshRecyclerView') //图片形状 implementation 'com.github.siyamed:android-shape-imageview:0.9.+@aar' //毛玻璃 implementation 'jp.wasabeef:glide-transformations:3.0.0' // compile project(path: ':app') api project(path: ':ResModl') }