ed973aaefb
Bumps [tink-android](https://github.com/google/tink) from 1.5.0 to 1.7.0. - [Release notes](https://github.com/google/tink/releases) - [Commits](https://github.com/google/tink/compare/v1.5.0...v1.7.0) --- updated-dependencies: - dependency-name: com.google.crypto.tink:tink-android dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
110 lines
3.4 KiB
Groovy
110 lines
3.4 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
kotlin_version = '1.7.21'
|
|
core_version = '1.9.0'
|
|
rxjava_version = '3.1.5'
|
|
rxandroid_version = '3.0.2'
|
|
rxkotlin_version = '3.0.1'
|
|
room_version = '2.4.3'
|
|
lifecycle_version = '2.5.1'
|
|
dagger_version = '2.44'
|
|
coroutines_version = '1.6.4'
|
|
activity_version = '1.4.0'
|
|
fragmentktx_version = '1.4.1'
|
|
ormLite_version = '4.46'
|
|
gson_version = '2.10'
|
|
nav_version = '2.4.2'
|
|
appcompat_version = '1.5.1'
|
|
material_version = '1.7.0'
|
|
constraintlayout_version = '2.1.4'
|
|
preferencektx_version = '1.2.0'
|
|
commonslang3_version = '3.12.0'
|
|
commonscodec_version = '1.15'
|
|
jodatime_version = '2.10.14'
|
|
work_version = '2.7.1'
|
|
tink_version = '1.7.0'
|
|
json_version = '20220320'
|
|
serialization_version = '1.4.1'
|
|
joda_version = '2.12.1'
|
|
|
|
junit_version = '4.13.2'
|
|
mockito_version = '4.4.0'
|
|
dexmaker_version = '1.2'
|
|
retrofit2_version = '2.9.0'
|
|
okhttp3_version = '4.9.0'
|
|
byteBuddy_version = '1.12.8'
|
|
|
|
androidx_junit_version = '1.1.3'
|
|
androidx_rules_version = '1.4.0'
|
|
|
|
rxandroidble_version = '1.12.1'
|
|
replayshare_version = '2.2.0'
|
|
|
|
wearable_version = '2.9.0'
|
|
play_services_wearable_version = '17.1.0'
|
|
play_services_location_version = '20.0.0'
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://plugins.gradle.org/m2/" } // jacoco 0.2
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
|
classpath 'com.google.gms:google-services:4.3.14'
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
classpath 'com.hiya:jacoco-android:0.2'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "io.gitlab.arturbosch.detekt" version "1.21.0"
|
|
id "org.jlleitschuh.gradle.ktlint" version "11.0.0"
|
|
id 'org.barfuin.gradle.jacocolog' version '2.0.0'
|
|
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://maven.google.com" }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
kotlinOptions {
|
|
freeCompilerArgs = [
|
|
'-opt-in=kotlin.RequiresOptIn',
|
|
'-Xjvm-default=all' //Support @JvmDefault
|
|
]
|
|
jvmTarget = "11"
|
|
}
|
|
}
|
|
gradle.projectsEvaluated {
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
|
}
|
|
}
|
|
}
|
|
|
|
apply from: 'jacoco_project.gradle'
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
subprojects {
|
|
tasks.withType(Test) {
|
|
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
|
}
|
|
}
|