summaryrefslogtreecommitdiff
path: root/gradle
diff options
context:
space:
mode:
authorGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2023-07-11 07:11:15 +0000
committerGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2023-07-11 07:11:15 +0000
commit921756bb2f3bb7891386f5aac551fe775d454a78 (patch)
tree9d1162115ae1e27ad27417f3ba90a3fb72919e00 /gradle
parent8b1855bce1313ad84df8f96efdbb62e2acf7ff33 (diff)
2: integrate ipscrambling module in git repos and update dependencies
Diffstat (limited to 'gradle')
-rw-r--r--gradle/libs.versions.toml56
1 files changed, 56 insertions, 0 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
new file mode 100644
index 0000000..b5b7a35
--- /dev/null
+++ b/gradle/libs.versions.toml
@@ -0,0 +1,56 @@
+[versions]
+
+kotlinx-coroutines = "1.6.1"
+kotlin = "1.6.10"
+androidx-navigation = "2.5.3"
+androidx-test = "1.3.0"
+androidx-lifecycle = "2.5.0"
+androidx-room = "2.3.0"
+orbotservice = "orbot-16.6.3-1"
+retrofit = "2.9.0"
+
+[libraries]
+
+androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version = "1.4.2" }
+androidx-arch-core-testing = {group = "androidx.arch.core", name = "core-testing", version = "2.1.0" }
+androidx-collection = { group = "androidx.collection", name = "collection-ktx", version = "1.1.0" }
+androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version = "1.8.0" }
+androidx-fragment-ktx = { group = "androidx.fragment", name = "fragment-ktx", version = "1.5.0" }
+androidx-lifecycle-runtime = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "androidx-lifecycle" }
+androidx-lifecycle-viewmodel = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "androidx-lifecycle" }
+androidx-localbroadcast = { group = "androidx.localbroadcastmanager", name = "localbroadcastmanager", version = "1.0.0" }
+androidx-navigation-fragment = { group = "androidx.navigation", name = "navigation-fragment-ktx", version.ref = "androidx-navigation" }
+androidx-navigation-ui = { group = "androidx.navigation", name = "navigation-ui-ktx", version.ref = "androidx-navigation" }
+androidx-palette = { group = "androidx.palette", name = "palette", version = "1.0.0" }
+androidx-room-common = { group = "androidx.room", name = "room-common", version.ref = "androidx-room" }
+androidx-room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "androidx-room" }
+androidx-room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "androidx-room" }
+androidx-room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "androidx-room" }
+androidx-work-ktx = { group = "androidx.work", name = "work-runtime-ktx", version = "2.7.1" }
+e-elib = { group = "foundation.e", name = "elib", version = "0.0.1-alpha11" }
+e-orbotservice = { group = "foundation.e", name = "orbotservice", version.ref = "orbotservice" }
+e-telemetry = { group = "foundation.e.lib", name = "telemetry", version = "0.0.8-alpha" }
+google-material = { group = "com.google.android.material", name = "material", version = "1.6.1" }
+junit = { group = "junit", name = "junit", version = "4.13.1" }
+kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "kotlinx-coroutines" }
+kotlinx-coroutines = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
+leakcanary = { group = "com.squareup.leakcanary", name = "leakcanary-android", version = "2.9.1" }
+maplibre = { group = "org.maplibre.gl", name = "android-sdk", version = "10.0.2" }
+mockk = { group = "io.mockk", name = "mockk", version = "1.10.5" }
+mpandroidcharts = { group = "com.github.PhilJay", name = "MPAndroidChart", version = "v3.1.0" }
+retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
+retrofit-scalars = { group = "com.squareup.retrofit2", name = "converter-scalars", version.ref = "retrofit" }
+timber = { group = "com.jakewharton.timber", name = "timber", version = "5.0.1" }
+
+[bundles]
+
+kotlin-android-coroutines = ["androidx-core-ktx", "kotlinx-coroutines"]
+
+[plugins]
+
+android-application = { id = "com.android.application", version = "7.2.1" }
+androidx-navigation-safeargs = { id = "androidx.navigation.safeargs.kotlin", version.ref = "androidx-navigation" }
+benmanes-versions = { id = "com.github.ben-manes.versions", version = "0.38.0" }
+kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
+kotlin-kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" }
+spotless = { id = "com.diffplug.spotless", version = "5.12.4" }