123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- apply plugin: 'com.android.library'
- apply plugin: 'com.jakewharton.butterknife'
- android {
- compileSdkVersion 25
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
- compile 'com.android.support:appcompat-v7:25.3.1'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.1'
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
- compile 'com.android.support:design:25+'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
- compile project(':laraver-annotations')
- //字体图标库
- compile 'com.joanzapata.iconify:android-iconify-ionicons:2.2.2' // (v2.0.1)
- compile 'com.joanzapata.iconify:android-iconify-fontawesome:2.2.2' // (v4.5)
- //Fragment依赖
- compile 'me.yokeyword:fragmentation:1.0.3'
- compile 'me.yokeyword:fragmentation-swipeback:1.0.3'
- //黄油刀
- compile 'com.jakewharton:butterknife:8.4.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
- //网络请求依赖
- compile 'com.squareup.okio:okio:1.13.0'
- compile 'com.squareup.okhttp3:okhttp:3.8.1'
- compile 'com.squareup.retrofit2:retrofit:2.3.0'
- compile 'com.squareup.retrofit2:converter-scalars:2.3.0'
- //Loader依赖
- compile 'com.wang.avi:library:2.1.3'
- //图片剪裁
- compile 'com.github.yalantis:ucrop:2.2.1-native'
- //二维码扫描
- compile 'me.dm7.barcodescanner:zbar:1.9.3'
- //Log
- compile 'com.orhanobut:logger:2.1.1'
- //RXJava
- compile 'io.reactivex.rxjava2:rxjava:2.1.1'
- compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
- compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
- //JSON依赖Android版
- compile 'com.alibaba:fastjson:1.1.57.android'
- //数据库依赖
- compile 'org.greenrobot:greendao-generator:3.2.2'
- compile 'org.greenrobot:greendao:3.2.2'
- //微信依赖(包含统计)
- compile 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:1.3.4'
- }
|