0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 12:12:15 +02:00
thunderbird-android/build.gradle

76 lines
2.2 KiB
Groovy
Raw Normal View History

2013-05-25 23:14:46 +02:00
buildscript {
ext {
buildConfig = [
2019-11-17 01:40:36 +01:00
'compileSdk': 29,
2019-11-17 01:50:00 +01:00
'targetSdk': 28,
2019-11-19 15:00:08 +01:00
'minSdk': 21,
2020-04-15 23:20:20 +02:00
'buildTools': '29.0.3',
'robolectricSdk': 28
]
versions = [
2020-04-15 20:33:00 +02:00
'kotlin': '1.3.72',
'kotlinCoroutines': '1.3.5',
2020-04-15 20:40:09 +02:00
'androidxAppCompat': '1.2.0-beta01',
2020-02-06 16:05:17 +01:00
'androidxRecyclerView': '1.1.0',
2020-02-06 16:22:51 +01:00
'androidxLifecycle': '2.2.0',
2020-02-06 16:24:04 +01:00
'androidxAnnotation': '1.1.0',
2020-04-15 20:49:59 +02:00
'androidxNavigation': '2.2.2',
2019-04-06 21:08:12 +02:00
'androidxConstraintLayout': '1.1.3',
2020-04-15 20:51:44 +02:00
'androidxWorkManager': '2.3.4',
2020-04-15 20:55:43 +02:00
'androidxFragment': '1.2.4',
2019-11-19 18:32:29 +01:00
'androidxLocalBroadcastManager': '1.0.0',
2020-02-06 17:36:35 +01:00
'androidxCore': '1.2.0',
'androidxCardView': '1.0.0',
2020-04-15 21:32:44 +02:00
'androidxPreference': '1.1.1',
'materialComponents': '1.1.0',
2019-11-28 17:26:29 +01:00
'preferencesFix': '1.1.0',
2020-04-15 22:13:11 +02:00
'okio': '2.5.0',
'moshi': '1.9.2',
2020-04-15 21:15:44 +02:00
'timber': '4.7.1',
2020-04-15 22:11:01 +02:00
'koin': '2.1.5',
2020-01-19 02:40:20 +01:00
'commonsIo': '2.6',
2018-07-08 03:27:52 +02:00
'mime4j': '0.8.1',
2020-04-15 22:26:09 +02:00
'okhttp': '4.5.0',
'minidns': '0.3.4',
2019-02-09 05:23:37 +01:00
'androidxTestRunner': '1.1.1',
2020-04-15 21:44:40 +02:00
'junit': '4.13',
'robolectric': '4.2.1',
2020-04-15 21:53:08 +02:00
'mockito': '3.3.3',
'mockitoKotlin': '2.2.0',
2020-01-19 02:36:04 +01:00
'truth': '1.0.1'
]
javaVersion = JavaVersion.VERSION_1_8
kotlinJvmVersion = "1.8"
}
2014-09-18 15:18:41 +02:00
repositories {
mavenCentral()
2018-02-17 04:05:09 +01:00
google()
maven { url "https://plugins.gradle.org/m2/" }
jcenter()
2014-09-18 15:18:41 +02:00
}
2013-05-25 23:14:46 +02:00
2014-09-18 15:18:41 +02:00
dependencies {
2020-04-25 14:45:39 +02:00
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
2020-04-15 22:31:59 +02:00
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.2.1"
2014-09-18 15:18:41 +02:00
}
2013-05-25 23:14:46 +02:00
}
2015-12-21 02:11:37 +01:00
project.ext {
testCoverage = project.hasProperty('testCoverage')
}
2014-08-31 01:10:13 +02:00
subprojects {
2018-02-17 04:33:30 +01:00
repositories {
mavenCentral()
2018-02-17 04:33:30 +01:00
google()
jcenter()
2019-10-05 17:19:30 +02:00
maven { url 'https://jitpack.io' }
2018-02-17 04:33:30 +01:00
}
2014-08-31 01:10:13 +02:00
}