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

77 lines
2.2 KiB
Groovy
Raw Normal View History

2013-05-25 23:14:46 +02:00
buildscript {
ext {
buildConfig = [
2019-02-09 02:15:01 +01:00
'compileSdk': 28,
'minSdk': 19,
'buildTools': '28.0.3'
]
versions = [
'kotlin': '1.3.20',
2019-02-09 05:23:37 +01:00
'androidxAppCompat': '1.0.2',
'androidxRecyclerView': '1.0.0',
'androidxLifecycleExtensions': '2.0.0',
'androidxAnnotation': '1.0.1',
'androidxNavigation': '2.0.0',
2019-04-06 21:08:12 +02:00
'androidxConstraintLayout': '1.1.3',
2019-05-19 23:49:09 +02:00
'materialComponents': '1.0.0',
2019-02-09 05:23:37 +01:00
'coreKtx': '1.0.1',
'preferencesFix': '1.0.0',
'okio': '1.14.0',
'timber': '4.5.1',
'koin': '0.9.1',
'commonsIo': '2.4',
2018-07-08 03:27:52 +02:00
'mime4j': '0.8.1',
// Note: Only use 3.12.x versions until we raise minSdkVersion to 21
'okhttp': '3.12.1',
2019-02-09 05:23:37 +01:00
'androidxTestRunner': '1.1.1',
'junit': '4.12',
'robolectric': '3.7.1',
'mockito': '2.18.0',
'mockitoKotlin': '1.5.0',
'truth': '0.35'
]
javaVersion = JavaVersion.VERSION_1_8
}
2014-09-18 15:18:41 +02:00
repositories {
mavenCentral()
2018-02-17 04:05:09 +01:00
google()
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 {
2019-11-13 16:54:55 +01:00
classpath 'com.android.tools.build:gradle:3.5.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
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
}
2018-07-01 13:39:01 +02:00
configurations.all {
resolutionStrategy {
2019-02-09 05:23:37 +01:00
force "androidx.annotation:annotation:${versions.androidxAnnotation}"
2019-02-09 02:15:01 +01:00
2019-02-09 05:23:37 +01:00
// org.koin:koin-android-architecture depends on android.arch.lifecycle:extensions
force "androidx.lifecycle:lifecycle-extensions:${versions.androidxLifecycleExtensions}"
2019-02-09 02:15:01 +01:00
// com.github.amlcurran.showcaseview:library depends on com.android.support:support-v4
2019-02-09 05:23:37 +01:00
force "androidx.legacy:legacy-support-v4:1.0.0"
2018-07-01 13:39:01 +02:00
}
}
2014-08-31 01:10:13 +02:00
}