blob: faf3192c94a09d6f01dd5c0ed5908ebf3c9910e2 [file] [log] [blame]
Aurimas Liutikase1b84582021-04-23 14:17:30 -07001[versions]
2# -----------------------------------------------------------------------------
3# All of the following should be updated in sync.
4# -----------------------------------------------------------------------------
Aurimas Liutikas78273a32021-07-08 16:49:13 -07005androidGradlePlugin = "7.1.0-alpha03"
Aurimas Liutikase1b84582021-04-23 14:17:30 -07006# NOTE: When updating the lint version we also need to update the `api` version
7# supported by `IssueRegistry`'s.' For e.g. r.android.com/1331903
Aurimas Liutikas78273a32021-07-08 16:49:13 -07008androidLint = "30.1.0-alpha03"
Aurimas Liutikase1b84582021-04-23 14:17:30 -07009# Once you have a chosen version of AGP to upgrade to, go to
10# https://developer.android.com/studio/archive and find the matching version of Studio.
Aurimas Liutikas78273a32021-07-08 16:49:13 -070011androidStudio = "2021.1.1.3"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070012# -----------------------------------------------------------------------------
13
Alan Viverettec73aa852021-06-22 17:25:51 -040014androidLintMin = "27.2.1"
Louis Pullen-Freilich027d77c2021-06-02 20:24:25 +010015# Compose 1.0 stable is aligned with AGP 7.0 / Lint 30.0.0 stable - so we use a higher min to
16# compile against as we don't need to maintain compatibility with older versions of Lint.
17# TODO: update to 30.0.0 stable when it is released
18androidLintMinCompose = "30.0.0-alpha15"
Aurimas Liutikasb840daa2021-07-21 15:38:42 +000019androidxTest = "1.4.0-beta01"
Aurimas Liutikasa595c652021-05-25 11:01:11 -070020androidxTestExt = "1.1.3-beta01"
David Saffbf201d92021-07-01 10:30:01 -040021atomicFu = "0.14.4"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070022autoService = "1.0-rc6"
23autoValue = "1.6.3"
Aurimas Liutikas21d9b222021-06-23 10:40:06 -070024dagger = "2.35"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070025dexmaker = "2.25.0"
26espresso = "3.3.0"
Aurimas Liutikas88b21112021-06-23 10:56:49 -070027guavaJre = "29.0-jre"
Aurimas Liutikas18e766d2021-05-25 16:40:19 -070028hilt = "2.36"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070029incap = "0.2"
Aurimas Liutikase268b112021-06-24 08:58:39 -070030kotlin = "1.5.21"
Yigit Boyar1ecb11a2021-05-27 11:23:43 -070031kotlinCompileTesting = "1.4.1"
Steven Schäferb7520772021-05-25 17:48:51 +020032kotlinCoroutines = "1.5.0"
Aurimas Liutikase268b112021-06-24 08:58:39 -070033ksp = "1.5.20-1.0.0-beta04"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070034leakcanary = "2.2"
35mockito = "2.25.0"
Roman Sedaikin5a783ef2021-07-23 15:16:46 +030036skiko = "0.3.9"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070037sqldelight = "1.3.0"
38wire = "3.6.0"
39
40[libraries]
Aurimas Liutikase1b84582021-04-23 14:17:30 -070041androidGradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidGradlePlugin" }
42androidLint = { module = "com.android.tools.lint:lint", version.ref = "androidLint" }
Aurimas Liutikasbc1dbeb2021-05-04 13:36:59 -070043androidLintMin = { module = "com.android.tools.lint:lint", version.ref = "androidLintMin" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070044androidLintApi = { module = "com.android.tools.lint:lint-api", version.ref = "androidLint" }
Aurimas Liutikasbc1dbeb2021-05-04 13:36:59 -070045androidLintMinApi = { module = "com.android.tools.lint:lint-api", version.ref = "androidLintMin" }
Louis Pullen-Freilich027d77c2021-06-02 20:24:25 +010046androidLintMinComposeApi = { module = "com.android.tools.lint:lint-api", version.ref = "androidLintMinCompose" }
Aurimas Liutikasb3483fd2021-06-04 16:56:37 -070047androidLintChecks = { module = "com.android.tools.lint:lint-checks", version.ref = "androidLint" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070048androidLintTests = { module = "com.android.tools.lint:lint-tests", version.ref = "androidLint" }
49autoCommon = { module = "com.google.auto:auto-common", version = "0.11" }
David Saffbf201d92021-07-01 10:30:01 -040050atomicFu = { module = "org.jetbrains.kotlinx:atomicfu", version.ref = "atomicFu" }
51atomicFuPlugin = { module = "org.jetbrains.kotlinx:atomicfu-gradle-plugin", version.ref = "atomicFu" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070052autoServiceAnnotations = { module = "com.google.auto.service:auto-service-annotations", version.ref = "autoService" }
53autoService = { module = "com.google.auto.service:auto-service", version.ref = "autoService" }
54autoValue = { module = "com.google.auto.value:auto-value", version.ref = "autoValue" }
55autoValueAnnotations = { module = "com.google.auto.value:auto-value-annotations", version.ref = "autoValue" }
56autoValueParcel = { module = "com.ryanharter.auto.value:auto-value-parcel", version = "0.2.6" }
57antlr4 = { module = "org.antlr:antlr4", version = "4.7.1" }
58apacheCommonsCodec = { module = "commons-codec:commons-codec", version = "1.10" }
59assertj = { module = "org.assertj:assertj-core", version = "3.11.1" }
60checkerframework = { module = "org.checkerframework:checker-qual", version = "2.5.3" }
Aurimas Liutikasb3483fd2021-06-04 16:56:37 -070061constraintLayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.0.1"}
Aurimas Liutikas21d9b222021-06-23 10:40:06 -070062dagger = { module = "com.google.dagger:dagger", version.ref = "dagger" }
63daggerCompiler = { module = "com.google.dagger:dagger-compiler", version.ref = "dagger" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070064dexmakerMockito = { module = "com.linkedin.dexmaker:dexmaker-mockito", version.ref = "dexmaker" }
65dexmakerMockitoInline = { module = "com.linkedin.dexmaker:dexmaker-mockito-inline", version.ref = "dexmaker" }
66dexMemberList = { module = "com.jakewharton.dex:dex-member-list", version = "4.1.1" }
67dokkaGradlePlugin = { module = "org.jetbrains.dokka:dokka-android-gradle-plugin", version = "0.9.17-g014" }
68espressoContrib = { module = "androidx.test.espresso:espresso-contrib", version.ref = "espresso" }
69espressoCore = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso" }
Aurimas Liutikasa8135062021-05-03 15:53:24 -070070espressoIdlingNet = { module = "androidx.test.espresso.idling:idling-net", version.ref = "espresso" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070071espressoIdlingResource = { module = "androidx.test.espresso:espresso-idling-resource", version.ref = "espresso" }
72espressoIntents = { module = "androidx.test.espresso:espresso-intents", version.ref = "espresso" }
73espressoWeb = { module = "androidx.test.espresso:espresso-web", version.ref = "espresso" }
74findbugs = { module = "com.google.code.findbugs:jsr305", version = "3.0.2" }
75firebaseAppindexing = { module = "com.google.firebase:firebase-appindexing", version = "19.2.0" }
76hiltAndroid = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
77hiltAndroidTesting = { module = "com.google.dagger:hilt-android-testing", version.ref = "hilt" }
78hiltAndroidGradlePlugin = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" }
79hiltCompiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
80hiltCore = { module = "com.google.dagger:hilt-core", version.ref = "hilt" }
81intellijAnnotations = { module = "com.intellij:annotations", version = "12.0" }
David Saff7444af52021-06-23 14:34:16 -040082japicmpPlugin = { module = "me.champeau.gradle:japicmp-gradle-plugin", version = "0.2.8" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070083javapoet = { module = "com.squareup:javapoet", version = "1.13.0" }
84jsqlparser = { module = "com.github.jsqlparser:jsqlparser", version = "3.1" }
85jsr250 = { module = "javax.annotation:javax.annotation-api", version = "1.2" }
86junit = { module = "junit:junit", version = "4.12" }
87gcmNetworkManager = { module = "com.google.android.gms:play-services-gcm", version = "17.0.0" }
88googleCompileTesting = { module = "com.google.testing.compile:compile-testing", version = "0.18" }
89gson = { module = "com.google.code.gson:gson", version = "2.8.0" }
Aurimas Liutikas88b21112021-06-23 10:56:49 -070090guava = { module = "com.google.guava:guava", version.ref = "guavaJre" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070091guavaAndroid = { module = "com.google.guava:guava", version = "29.0-android" }
92guavaListenableFuture = { module = "com.google.guava:listenablefuture", version = "1.0" }
93gradleIncapHelper = { module = "net.ltgt.gradle.incap:incap", version.ref = "incap" }
94gradleIncapHelperProcessor = { module = "net.ltgt.gradle.incap:incap-processor", version.ref = "incap" }
95kotlinAnnotationProcessingEmbeddable = { module = "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable", version.ref = "kotlin" }
Aurimas Liutikasc0f206d2021-06-02 09:29:46 -070096kotlinCompiler = { module = "org.jetbrains.kotlin:kotlin-compiler", version.ref = "kotlin" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070097kotlinCompilerEmbeddable = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "kotlin" }
98kotlinCompileTesting = { module = "com.github.tschuchortdev:kotlin-compile-testing", version.ref = "kotlinCompileTesting" }
99kotlinCompileTestingKsp = { module = "com.github.tschuchortdev:kotlin-compile-testing-ksp", version.ref = "kotlinCompileTesting" }
100kotlinCoroutinesAndroid = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinCoroutines" }
101kotlinCoroutinesSwing = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-swing", version.ref = "kotlinCoroutines" }
102kotlinCoroutinesCore = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinCoroutines" }
103kotlinCoroutinesGuava = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-guava", version.ref = "kotlinCoroutines" }
104kotlinCoroutinesTest = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinCoroutines" }
105kotlinCoroutinesRx2 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-rx2", version.ref = "kotlinCoroutines" }
106kotlinCoroutinesRx3 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-rx3", version.ref = "kotlinCoroutines" }
107kotlinDaemonEmbeddable = { module = "org.jetbrains.kotlin:kotlin-daemon-embeddable", version.ref = "kotlin" }
Aurimas Liutikas1a0e7b12021-05-04 12:55:40 -0700108kotlinMetadataJvm = { module = "org.jetbrains.kotlinx:kotlinx-metadata-jvm", version = "0.3.0" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700109kotlinStdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
110kotlinStdlibCommon = { module = "org.jetbrains.kotlin:kotlin-stdlib-common", version.ref = "kotlin" }
111kotlinStdlibJdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlin" }
112kotlinStdlibJs = { module = "org.jetbrains.kotlin:kotlin-stdlib-js", version.ref = "kotlin" }
113kotlinGradlePlugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
114kotlinTest = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
115kotlinTestAnnotationsCommon = { module = "org.jetbrains.kotlin:kotlin-test-annotations-common", version.ref = "kotlin" }
116kotlinTestCommon = { module = "org.jetbrains.kotlin:kotlin-test-common", version.ref = "kotlin" }
117kotlinTestJunit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
118kotlinTestJs = { module = "org.jetbrains.kotlin:kotlin-test-js", version.ref = "kotlin" }
119kotlinReflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" }
Aurimas Liutikas3643bbc2021-05-24 14:47:26 -0700120kotlinPoet = { module = "com.squareup:kotlinpoet", version = "1.8.0" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700121ksp = { module = "com.google.devtools.ksp:symbol-processing", version.ref = "ksp" }
122kspApi = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "ksp" }
123kspGradlePlugin = { module = "com.google.devtools.ksp:symbol-processing-gradle-plugin", version.ref = "ksp" }
124leakcanary = { module = "com.squareup.leakcanary:leakcanary-android", version.ref = "leakcanary" }
125leakcanaryInstrumentation = { module = "com.squareup.leakcanary:leakcanary-android-instrumentation", version.ref = "leakcanary" }
126material = { module = "com.google.android.material:material", version = "1.2.1" }
weginleee93e9482021-06-07 11:44:39 +0800127mlkitBarcode = { module = "com.google.mlkit:barcode-scanning", version = "16.1.1" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700128mockitoCore = { module = "org.mockito:mockito-core", version.ref = "mockito" }
129mockitoAndroid = { module = "org.mockito:mockito-android", version.ref = "mockito" }
130mockitoKotlin = { module = "com.nhaarman.mockitokotlin2:mockito-kotlin", version = "2.1.0" }
131multidex = { module = "androidx.multidex:multidex", version = "2.0.1" }
132nullaway = { module = "com.uber.nullaway:nullaway", version = "0.3.7" }
133okhttpMockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version = "3.14.7" }
134playCore = { module = "com.google.android.play:core", version = "1.9.1" }
135playServicesBase = { module = "com.google.android.gms:play-services-base", version = "17.0.0" }
Neda Topoljanac086768b2021-05-14 19:32:59 +0000136playServicesBasement = { module = "com.google.android.gms:play-services-basement", version = "17.0.0" }
Neda Topoljanac33d95fb2020-12-14 14:15:54 +0000137playServicesWearable = { module = "com.google.android.gms:play-services-wearable", version = "17.1.0" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700138protobuf = { module = "com.google.protobuf:protobuf-java", version = "3.4.0" }
139protobufCompiler = { module = "com.google.protobuf:protoc", version = "3.10.0" }
Aurimas Liutikasda6af1a2021-05-13 17:06:23 -0700140protobufGradlePlugin = { module = "com.google.protobuf:protobuf-gradle-plugin", version = "0.8.16" }
Neda Topoljanac9a4b6822021-05-07 11:01:31 +0000141protobufLite = { module = "com.google.protobuf:protobuf-javalite", version = "3.10.0" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700142reactiveStreams = { module = "org.reactivestreams:reactive-streams", version = "1.0.0" }
143retrofit = { module = "com.squareup.retrofit2:retrofit", version = "2.7.2" }
Aurimas Liutikase0261b72021-07-23 16:38:47 -0700144robolectric = { module = "org.robolectric:robolectric", version = "4.6.1" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700145rxjava2 = { module = "io.reactivex.rxjava2:rxjava", version = "2.2.9" }
146rxjava3 = { module = "io.reactivex.rxjava3:rxjava", version = "3.0.0" }
147shadow = { module = "com.github.jengelman.gradle.plugins:shadow", version = "6.1.0" }
Aurimas Liutikas4b0918a2021-06-07 09:48:31 -0700148skiko = { module = "org.jetbrains.skiko:skiko-jvm", version.ref = "skiko" }
149skikoMacOsArm64 = { module = "org.jetbrains.skiko:skiko-jvm-runtime-macos-arm64", version.ref = "skiko" }
150skikoMacOsX64 = { module = "org.jetbrains.skiko:skiko-jvm-runtime-macos-x64", version.ref = "skiko" }
151skikoWindowsX64 = { module = "org.jetbrains.skiko:skiko-jvm-runtime-windows-x64", version.ref = "skiko" }
152skikoLinuxX64 = { module = "org.jetbrains.skiko:skiko-jvm-runtime-linux-x64", version.ref = "skiko" }
Oleksandr Karpovich6b442ba2021-06-12 19:07:01 +0200153skikoLinuxArm64 = { module = "org.jetbrains.skiko:skiko-jvm-runtime-linux-arm64", version.ref = "skiko" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700154sqldelightAndroid = { module = "com.squareup.sqldelight:android-driver", version.ref = "sqldelight" }
155sqldelightCoroutinesExt = { module = "com.squareup.sqldelight:coroutines-extensions", version.ref = "sqldelight" }
Daniel Santiago Rivera393ee092021-06-28 17:43:19 -0700156sqliteJdbc = { module = "org.xerial:sqlite-jdbc", version = "3.36.0" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700157testCore = { module = "androidx.test:core", version.ref = "androidxTest" }
158testExtJunit = { module = "androidx.test.ext:junit", version.ref = "androidxTestExt" }
159testExtJunitKtx = { module = "androidx.test.ext:junit-ktx", version.ref = "androidxTestExt" }
160testExtTruth = { module = "androidx.test.ext:truth", version.ref = "androidxTest" }
161testMonitor = { module = "androidx.test:monitor", version.ref = "androidxTest" }
162testRules = { module = "androidx.test:rules", version.ref = "androidxTest" }
163testRunner = { module = "androidx.test:runner", version.ref = "androidxTest" }
164testUiautomator = { module = "androidx.test.uiautomator:uiautomator", version = "2.2.0" }
165truth = { module = "com.google.truth:truth", version = "1.0.1" }
166viewBinding = { module = "androidx.databinding:viewbinding", version = "4.1.2" }
167wireGradlePlugin = { module = "com.squareup.wire:wire-gradle-plugin", version.ref = "wire" }
168wireRuntime = { module = "com.squareup.wire:wire-runtime", version.ref = "wire" }
Aurimas Liutikase1b84582021-04-23 14:17:30 -0700169xpp3 = { module = "xpp3:xpp3", version = "1.1.4c" }
Yigit Boyar5cabf8f2021-05-20 12:06:55 -0700170xmlpull = { module = "xmlpull:xmlpull", version = "1.1.3.1" }