| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- defaultConfig {
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- api fileTree(include: ['*.jar'], dir: 'libs')
- api(name: 'alipaySdk-15.6.8-20191021122514', ext: 'aar')
- api(name: 'OcrSDKv1.0.7-release', ext: 'aar')
- api 'com.android.support:appcompat-v7:28.0.0'
- api 'com.android.support:design:28.0.0'
- api 'com.android.support.constraint:constraint-layout:1.1.3'
- api 'com.android.support:support-vector-drawable:28.0.0'
- //rx
- api 'io.reactivex.rxjava2:rxjava:2.0.7'
- api 'io.reactivex.rxjava2:rxandroid:2.0.1'
- //retrofit
- api 'com.squareup.retrofit2:retrofit:2.2.0'
- api 'com.squareup.retrofit2:converter-gson:2.2.0'
- api 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
- api 'com.squareup.okhttp3:logging-interceptor:3.6.0'
- api 'com.facebook.stetho:stetho-okhttp3:1.3.1'
- //rxpermissions
- api 'com.github.tbruyelle:rxpermissions:0.10.2'
- //rxlife
- //https://github.com/trello/RxLifecycle
- api 'com.trello.rxlifecycle2:rxlifecycle:2.0.1'
- api 'com.trello.rxlifecycle2:rxlifecycle-android:2.0.1'
- api 'com.trello.rxlifecycle2:rxlifecycle-components:2.0.1'
- //gson
- api 'com.google.code.gson:gson:2.8.5'
- //glide
- api 'com.github.bumptech.glide:glide:3.8.0'
- //banner
- api 'com.youth.banner:banner:1.4.10'
- api 'com.tbuonomo.andrui:viewpagerdotsindicator:3.0.3'
- //高德地图
- //3D地图
- api 'com.amap.api:3dmap:8.0.1'
- //定位
- api 'com.amap.api:location:5.5.1'
- //weixin
- api 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
- //EventBus
- api 'org.greenrobot:eventbus:3.0.0'
- //refresh
- api 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-21'
- api 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-21'
- //label
- api 'com.github.donkingliang:LabelsView:1.4.7'
- //XMarquee
- api 'com.github.xiaohaibin:XMarqueeView:2.0.2'
- //PickerView
- api 'com.contrarywind:wheelview:4.0.9'
- //Bugly
- api 'com.tencent.bugly:crashreport:latest.release'
- //其中latest.release指代最新Bugly SDK版本号,也可以指定明确的版本号,例如2.1.9
- api 'com.tencent.bugly:nativecrashreport:latest.release'
- //其中latest.release指代最新Bugly NDK版本号,也可以指定明确的版本号,例如3.0
- //DatePicker
- api 'com.github.prolificinteractive:material-calendarview:2.0.0'
- api 'com.haibin:calendarview:3.6.8'
- //Luban
- api 'top.zibin:Luban:1.1.8'
- //actionbar
- api 'com.github.zackratos.ultimatebar:ultimatebar3:3.1.1'
- }
|