AndroidAPS/build.gradle

67 lines
1.8 KiB
Groovy
Raw Normal View History

2016-06-04 17:28:05 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-05-03 21:27:42 +02:00
ext {
2020-05-04 21:37:03 +02:00
kotlin_version = '1.3.72'
2020-07-04 21:58:51 +02:00
coreVersion = '1.3.0'
2020-05-03 21:27:42 +02:00
rxjava_version = '2.2.19'
rxandroid_version = '2.1.1'
rxkotlin_version = '2.4.0'
room_version = '2.2.5'
lifecycle_version = '2.2.0'
2020-07-04 21:58:51 +02:00
dagger_version = '2.28.1'
2020-05-31 11:27:12 +02:00
coroutinesVersion = '1.3.7'
2020-07-04 21:58:51 +02:00
activityVersion = '1.2.0-alpha06'
fragmentVersion = '1.3.0-alpha07'
2020-05-07 09:54:36 +02:00
ormLiteVersion = "4.46"
2020-05-03 21:27:42 +02:00
}
2016-06-04 17:28:05 +02:00
repositories {
2017-12-03 21:31:06 +01:00
google()
jcenter()
2016-06-04 17:28:05 +02:00
}
dependencies {
2020-07-28 23:49:21 +02:00
classpath 'com.android.tools.build:gradle:4.0.1'
2019-11-28 00:56:51 +01:00
classpath 'com.google.gms:google-services:4.3.3'
2020-05-31 10:12:36 +02:00
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.1'
2016-06-04 17:28:05 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
2018-01-24 21:54:24 +01:00
2019-04-10 00:33:05 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-06-04 17:28:05 +02:00
}
}
allprojects {
repositories {
2018-02-21 15:07:01 +01:00
google()
jcenter()
2018-02-21 15:18:53 +01:00
2018-01-24 21:54:24 +01:00
maven {
url "https://maven.google.com"
}
2018-02-02 20:00:31 +01:00
ivy {
url 'https://github.com/'
2020-05-04 21:03:30 +02:00
patternLayout {
2018-02-02 20:00:31 +01:00
artifact '/[organisation]/[module]/archive/[revision].[ext]'
}
}
2016-06-04 17:28:05 +02:00
}
2019-12-28 02:53:55 +01:00
//Support @JvmDefault
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
freeCompilerArgs = ['-Xjvm-default=enable'] //enable or compatibility
jvmTarget = "1.8"
}
}
2016-06-04 17:28:05 +02:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2020-05-24 19:07:26 +02:00
subprojects {
tasks.withType(Test) {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
}
}