supervision/build.gradle
2024-03-29 09:34:16 +08:00

80 lines
2.0 KiB
Groovy
Executable File

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0-rc2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex')) {
details.useVersion '28.0.0'//这个版本号设置为你想要的版本
}
}
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
gCompileSdkVersion = 28
gMinSdkVersion = 16
gTargetSdkVersion = 28
gVersionCode = 2
gVersionName = '1.0.1'
//Router编译版本
gRouterApiVersion = '1.4.1'
gRouterCompileVersion = '1.2.2'
//appcompat
gAppcompatVersion_v7 = '28.0.0'
//constraint-layout
gConstraint_layout = '1.1.3'
//butterknife
gButterKnifeVersion = '8.4.0'
//Gson
gGsonVersion = '2.8.5'
//Retrofit
gRetrofitVersion = '2.5.0'
//Rxjava
gRxJavaVersion = '2.2.7'
gRxAndroid = '2.1.1'
//Glide
gGlideVersion = '4.8.0'
//Okhttp
gOkHttp3Version = '3.13.1'
//EventBus
gEventBus = '2.4.0'
//ZXing
gZXingVersion = '3.3.0'
//视频播放g
gPlayerVersion = '6.3.1'
//图片压缩
gLubanVersion = '1.1.8'
//Rcyclerview扩展
gXRecyclerViewVersion = '1.5.9'
//rxview
gRxjavaBindingVersion = '2.1.1'
gPickerViewVersion = '4.1.9'
gBoomMenu = '2.1.1'
gFilePicker = '1.8.0'
}