Twidere-App-Android-Twitter.../build.gradle

58 lines
1.5 KiB
Groovy
Raw Normal View History

2014-07-03 07:48:39 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2014-07-03 07:48:39 +02:00
buildscript {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
2019-06-20 14:04:52 +02:00
google()
2014-07-03 07:48:39 +02:00
}
2014-07-03 07:48:39 +02:00
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
2014-07-03 07:48:39 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
ext {
projectGroupId = 'org.mariotaku.twidere'
2021-04-21 09:27:12 +02:00
projectVersionCode = 517
projectVersionName = '4.1.8'
2017-09-05 11:00:01 +02:00
globalCompileSdkVersion = 30
globalBuildToolsVersion = "30.0.3"
2020-01-26 08:35:15 +01:00
2020-05-26 11:14:52 +02:00
globalMinSdkVersion = 16
globalTargetSdkVersion = 30
}
2014-07-03 07:48:39 +02:00
repositories {
2016-04-27 12:51:06 +02:00
mavenLocal()
jcenter()// exoplayer and glide-transformations still using jcenter
mavenCentral()
maven { url "https://jitpack.io" }
2020-01-26 08:35:15 +01:00
google()
}
2015-11-22 15:55:29 +01:00
}
subprojects {
2016-12-07 10:50:44 +01:00
buildscript {
ext {
kotlinVersion = '1.4.31'
2020-05-31 03:12:29 +02:00
sharedVersions = [
Kotlin : "${kotlinVersion}",
2020-05-31 03:12:29 +02:00
2017-04-25 05:36:37 +02:00
LoganSquare : '1.3.7',
Jackson : '2.12.1',
2017-04-25 05:36:37 +02:00
ParcelablePlease : '1.0.2',
2020-05-31 03:12:29 +02:00
2017-09-20 14:39:11 +02:00
ExportablePreferences: '0.9.7',
2020-06-29 05:11:50 +02:00
MariotakuCommons : '0.9.22',
2020-05-31 03:12:29 +02:00
ObjectCursor : '0.9.21',
2020-06-29 05:11:50 +02:00
RestFu : '0.9.64',
2017-03-04 06:02:41 +01:00
]
2015-11-22 15:55:29 +01:00
}
}
2015-11-22 16:29:00 +01:00
}