2014-07-03 13:48:39 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2020-04-21 11:37:51 -04:00
|
|
|
|
2014-07-03 13:48:39 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2020-04-21 11:37:51 -04:00
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
2019-06-21 00:04:52 +12:00
|
|
|
google()
|
2014-07-03 13:48:39 +08:00
|
|
|
}
|
2020-04-21 11:37:51 -04:00
|
|
|
|
2014-07-03 13:48:39 +08:00
|
|
|
dependencies {
|
2020-05-30 21:12:53 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.0'
|
2014-07-03 13:48:39 +08:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2017-09-01 00:58:23 +08:00
|
|
|
ext {
|
2017-06-09 23:09:04 +08:00
|
|
|
projectGroupId = 'org.mariotaku.twidere'
|
2020-05-25 14:34:25 +08:00
|
|
|
projectVersionCode = 512
|
|
|
|
projectVersionName = '4.1.3'
|
2017-09-05 17:00:01 +08:00
|
|
|
|
2019-10-24 18:19:37 +09:00
|
|
|
globalCompileSdkVersion = 29
|
2020-04-21 11:39:26 -04:00
|
|
|
globalBuildToolsVersion = "29.0.3"
|
2020-01-26 15:35:15 +08:00
|
|
|
|
2020-05-26 17:14:52 +08:00
|
|
|
globalMinSdkVersion = 16
|
2020-01-26 15:35:15 +08:00
|
|
|
globalTargetSdkVersion = 29
|
2017-06-09 23:09:04 +08:00
|
|
|
}
|
|
|
|
|
2014-07-03 13:48:39 +08:00
|
|
|
repositories {
|
2016-04-27 18:51:06 +08:00
|
|
|
mavenLocal()
|
2014-07-03 13:48:39 +08:00
|
|
|
jcenter()
|
2020-04-21 11:37:51 -04:00
|
|
|
maven { url "https://jitpack.io" }
|
2020-01-26 15:35:15 +08:00
|
|
|
google()
|
2014-11-21 11:00:46 +08:00
|
|
|
}
|
2015-11-22 22:55:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
2016-12-07 17:50:44 +08:00
|
|
|
buildscript {
|
2017-02-28 21:30:18 +08:00
|
|
|
ext {
|
2020-04-21 11:39:26 -04:00
|
|
|
kotlinVersion = '1.3.72'
|
2020-05-30 21:12:29 -04:00
|
|
|
sharedVersions = [
|
2017-09-01 00:58:23 +08:00
|
|
|
Kotlin : "${kotlinVersion}",
|
2020-05-30 21:12:29 -04:00
|
|
|
|
2017-04-25 11:36:37 +08:00
|
|
|
LoganSquare : '1.3.7',
|
2020-05-30 21:12:29 -04:00
|
|
|
Jackson : '2.7.4',
|
2017-04-25 11:36:37 +08:00
|
|
|
ParcelablePlease : '1.0.2',
|
2020-05-30 21:12:29 -04:00
|
|
|
|
2017-09-20 20:39:11 +08:00
|
|
|
ExportablePreferences: '0.9.7',
|
2020-05-30 21:12:29 -04:00
|
|
|
MariotakuCommons : '0.9.20',
|
|
|
|
ObjectCursor : '0.9.21',
|
|
|
|
RestFu : '0.9.60',
|
2017-03-04 13:02:41 +08:00
|
|
|
]
|
2015-11-22 22:55:29 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-22 23:29:00 +08:00
|
|
|
}
|