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

94 lines
3.4 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.
buildscript {
repositories {
jcenter()
2017-10-20 19:39:48 +02:00
google()
maven { url 'https://plugins.gradle.org/m2/' }
2014-07-03 07:48:39 +02:00
}
dependencies {
2017-11-21 07:27:00 +01:00
classpath 'com.android.tools.build:gradle:3.0.1'
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'
2017-11-30 07:24:49 +01:00
projectVersionCode = 398
projectVersionName = '4.0.0-SNAPSHOT'
2017-09-05 11:00:01 +02:00
globalCompileSdkVersion = 27
2017-12-12 15:07:15 +01:00
globalBuildToolsVersion = '27.0.2'
}
2014-07-03 07:48:39 +02:00
repositories {
2016-04-27 12:51:06 +02:00
mavenLocal()
2014-07-03 07:48:39 +02:00
jcenter()
2017-10-20 19:39:48 +02:00
google()
maven { url 'https://jitpack.io' }
}
2015-03-11 15:15:32 +01:00
2015-11-22 15:55:29 +01:00
}
subprojects {
2016-12-07 10:50:44 +01:00
buildscript {
ext {
2017-11-29 15:57:41 +01:00
kotlinVersion = '1.2.0'
2017-06-20 03:42:36 +02:00
pluginVersions = [
AndroidSvgDrawable: '3.0.0',
2017-09-23 16:11:09 +02:00
PlayServices : '3.1.1',
2017-06-20 03:42:36 +02:00
]
2017-03-04 06:02:41 +01:00
libVersions = [
2017-10-13 13:33:14 +02:00
Kotlin : "${kotlinVersion}",
SupportLib : '27.0.2',
2017-10-13 13:33:14 +02:00
SupportTest : '1.0.0',
2017-11-17 07:58:51 +01:00
MariotakuCommons : '0.9.21',
RestFu : '0.9.61',
2017-10-13 13:33:14 +02:00
ObjectCursor : '0.9.21',
PlayServices : '11.6.2',
2017-10-19 15:43:04 +02:00
PlayBilling : '1.0',
2017-10-13 13:33:14 +02:00
MapsUtils : '0.5',
DropboxCoreSdk : '3.0.3',
GoogleDriveApi : 'v3-rev81-1.22.0',
2017-10-26 10:40:48 +02:00
Exoplayer : 'r2.5.4',
2017-10-13 13:33:14 +02:00
Toro : '2.1.0',
LoganSquare : '1.3.7',
Mime4J : '0.7.2',
2017-10-26 10:40:48 +02:00
OkHttp : '3.9.0',
2017-10-13 13:33:14 +02:00
Stetho : '1.5.0',
OSMDroid : '5.6.5',
LeakCanary : '1.5.1',
TwitterText : '1.14.7',
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',
2017-12-12 15:07:15 +01:00
Chameleon : '0.9.25',
2017-12-13 07:06:21 +01:00
UniqR : '0.9.5',
SQLiteQB : '0.9.16',
2017-10-13 13:33:14 +02:00
Glide : '3.7.0',
GlideOkHttp3 : '1.4.0',
GlideTransformations : '2.0.2',
AndroidImageCropper : '2.4.6',
ExportablePreferences : '0.9.7',
ACRA : '4.9.2',
2017-11-06 12:09:14 +01:00
AbstractTask : '0.9.8',
2017-10-13 13:33:14 +02:00
Dagger : '2.11',
StethoBeanShellREPL : '0.3',
2017-11-23 09:05:02 +01:00
ArchLifecycleExtensions: '1.0.0',
2017-10-13 13:33:14 +02:00
ArchPaging : '1.0.0-alpha3',
2017-10-20 19:39:48 +02:00
ConstraintLayout : '1.0.2',
2017-12-07 09:32:56 +01:00
MessageBubbleView : '2.1',
2017-03-04 06:02:41 +01:00
]
2015-11-25 13:14:18 +01:00
2015-11-22 15:55:29 +01:00
}
2015-11-22 16:38:11 +01:00
2015-11-22 15:55:29 +01:00
}
2015-11-22 16:38:11 +01:00
2015-11-22 16:29:00 +01:00
}