82 lines
3.8 KiB
Groovy
82 lines
3.8 KiB
Groovy
ext {
|
|
time = ""
|
|
kotlin_version = "1.4.20"
|
|
android = [
|
|
compileSdkVersion: 29,
|
|
buildToolsVersion: "29.0.2",
|
|
minSdkVersion : 19,
|
|
targetSdkVersion : 22,
|
|
]
|
|
dependencies = [
|
|
kotlinstdlibjdk7 : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlin_version}",
|
|
|
|
// android
|
|
androidxappcompat : "androidx.appcompat:appcompat:1.3.1",
|
|
androidxconstraintlayout : "androidx.constraintlayout:constraintlayout:2.1.0",
|
|
boostmultidex : "com.bytedance.boost_multidex:boost_multidex:1.0.1",
|
|
// flexbox
|
|
flexbox : 'com.google.android:flexbox:2.0.1',
|
|
// 测试
|
|
junit : "junit:junit:4.12",
|
|
// 地图
|
|
amapnavi3dmap : "com.amap.api:navi-3dmap:7.2.0_3dmap7.2.0",
|
|
amapsearch : "com.amap.api:search:7.1.0",
|
|
amaplocation : "com.amap.api:location:5.2.0",
|
|
// json 转换
|
|
gson : "com.google.code.gson:gson:2.8.4",
|
|
// 内存泄漏检测
|
|
debugleakcanary : "com.squareup.leakcanary:leakcanary-android:1.6.1",
|
|
releaseleakcanary : "com.squareup.leakcanary:leakcanary-android-no-op:1.6.1",
|
|
testleakcanary : "com.squareup.leakcanary:leakcanary-android-no-op:1.6.1",
|
|
//rxJava
|
|
rxjava : "io.reactivex.rxjava2:rxjava:2.2.2",
|
|
rxandroid : "io.reactivex.rxjava2:rxandroid:2.1.0",
|
|
// glide
|
|
glide : 'com.github.bumptech.glide:glide:4.8.0',
|
|
fresco : 'com.facebook.fresco:fresco:1.9.0',
|
|
|
|
retrofit : "com.squareup.retrofit2:retrofit:2.6.0",
|
|
retrofitadapter : "com.squareup.retrofit2:adapter-rxjava2:2.6.0",
|
|
retrofitconvertergson : "com.squareup.retrofit2:converter-gson:2.6.0",
|
|
retrofitconverterscalars : "com.squareup.retrofit2:converter-scalars:2.1.0",
|
|
|
|
// leakcanary
|
|
leakcanary : 'com.squareup.leakcanary:leakcanary-android:1.5.4',
|
|
leakcanarynoop : 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4',
|
|
|
|
// add for room
|
|
room : "android.arch.persistence.room:runtime:1.1.1",
|
|
roomAnnotationProcessor : 'android.arch.persistence.room:compiler:1.1.1',
|
|
|
|
// rxjava2 with room
|
|
roomRxjava : "android.arch.persistence.room:rxjava2:1.1.1",
|
|
|
|
//
|
|
jetbrainsannotationsjava5: "org.jetbrains:annotations-java5:15.0",
|
|
|
|
// 统一登录
|
|
accountsdk : "com.zhidao.accountservice:account-sdk:1.0.18",
|
|
// crash
|
|
crashSdk : "com.zhidaoauto.crash.log:library:1.0.5",
|
|
|
|
videoprocessor : "com.zhidao.video:video-processor:1.0.2.1",
|
|
|
|
// 直播SDK
|
|
live_sdk_zego : "im.zego:express-video:2.2.0",
|
|
|
|
aspectj : "org.aspectj:aspectjrt:1.8.9",
|
|
adasapi : "com.zhidao.autopilot.support:adas:1.0.6.6",
|
|
adasconfigapi : "com.zhidao.adasconfig:adasconfig:1.1.5.2",
|
|
|
|
// obu sdk
|
|
obusdk : "com.zhidao.enterprise.smartv2x:smartv2x:1.0.0.3",
|
|
|
|
// google
|
|
googlezxing : "com.google.zxing:core:3.3.3",
|
|
litezxing : "com.google.zxing:litezxing:1.0.29.8",
|
|
cossdk : "com.zhidao.cosupload:cosuploadsdk:1.1.6",
|
|
spi : 'com.elegant.spi:api:1.0.9.1' //运行时spi库
|
|
|
|
]
|
|
|
|
} |