1
0
mirror of https://github.com/TwidereProject/Twidere-Android synced 2025-02-15 03:00:46 +01:00

93 lines
3.1 KiB
Groovy
Raw Normal View History

2014-07-03 13:48:39 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2014-07-03 13:48:39 +08:00
buildscript {
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
2019-06-21 00:04:52 +12:00
google()
2014-07-03 13:48:39 +08:00
}
2014-07-03 13:48:39 +08:00
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
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 {
ext {
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
globalBuildToolsVersion = "29.0.3"
2020-01-26 15:35:15 +08:00
globalMinSdkVersion = 19
globalTargetSdkVersion = 29
}
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()
maven { url "https://jitpack.io" }
2020-01-26 15:35:15 +08:00
google()
}
2015-11-22 22:55:29 +08:00
}
subprojects {
2016-12-07 17:50:44 +08:00
buildscript {
ext {
kotlinVersion = '1.3.72'
2017-06-20 09:42:36 +08:00
pluginVersions = [
AndroidSvgDrawable: '3.0.0',
2020-02-24 13:09:03 +08:00
PlayServices : '4.3.3',
2017-06-20 09:42:36 +08:00
]
2017-03-04 13:02:41 +08:00
libVersions = [
Kotlin : "${kotlinVersion}",
2017-08-14 00:29:20 +08:00
SupportTest : '1.0.0',
MariotakuCommons : '0.9.20',
RestFu : '0.9.60',
2017-09-20 20:39:11 +08:00
ObjectCursor : '0.9.21',
2020-02-24 13:09:03 +08:00
PlayServices : '17.0.0',
MapsUtils : '0.6.2',
DropboxCoreSdk : '3.1.3',
GoogleDriveApi : 'v3-rev193-1.25.0',
2020-05-01 16:47:37 +01:00
Exoplayer : '2.11.4',
2017-04-25 11:36:37 +08:00
Toro : '2.1.0',
LoganSquare : '1.3.7',
2020-02-24 13:09:03 +08:00
IABv3 : '1.1.0',
2017-04-25 11:36:37 +08:00
Mime4J : '0.7.2',
OkHttp : '3.8.1',
Stetho : '1.5.0',
2017-09-24 22:50:37 +08:00
OSMDroid : '5.6.5',
2020-01-26 15:35:15 +08:00
LeakCanary : '2.1',
2017-09-20 14:02:24 +08:00
TwitterText : '1.14.7',
2017-04-25 11:36:37 +08:00
MediaViewerLibrary : '0.9.23',
MultiValueSwitch : '0.9.8',
PickNCrop : '0.9.27',
AndroidGIFDrawable : '1.2.6',
KPreferences : '0.9.7',
Kovenant : '3.3.0',
ParcelablePlease : '1.0.2',
2020-02-25 20:22:06 +08:00
Chameleon : '0.9.28',
2017-07-16 14:09:23 +08:00
UniqR : '0.9.4',
2017-04-25 11:36:37 +08:00
SQLiteQB : '0.9.15',
2020-04-13 17:33:36 +08:00
Glide : '4.11.0',
GlideOkHttp3 : '4.11.0',
GlideTransformations : '4.1.0',
2017-08-14 00:29:20 +08:00
AndroidImageCropper : '2.4.6',
2017-09-20 20:39:11 +08:00
ExportablePreferences: '0.9.7',
ACRA : '4.9.2',
2017-05-14 22:02:42 +08:00
AbstractTask : '0.9.5',
Dagger : '2.11',
2017-09-24 22:50:37 +08:00
StethoBeanShellREPL : '0.1',
MessageBubbleView : '3.5',
2017-03-04 13:02:41 +08:00
]
2015-11-25 20:14:18 +08:00
2015-11-22 22:55:29 +08:00
}
2015-11-22 23:38:11 +08:00
2015-11-22 22:55:29 +08:00
}
2015-11-22 23:38:11 +08:00
2015-11-22 23:29:00 +08:00
}