kiwix-android/buildSrc/build.gradle.kts
MohitMaliFtechiz db41f1d876 Upgraded the Gradle version to 8.7.2 which is required for Android 15.
* Upgraded the `kotlin_coroutines` dependency to `1.10.1`.
* Upgraded the `espresso` dependency to `3.6.1`.
* Upgraded the `tracing` dependency to `1.2.0`.
* Upgraded the `espresso` dependency to `3.6.1`.
* Upgraded the `material` dependency to `1.12.0`.
* Upgraded the `webkit` dependency to `1.12.1`.
* Upgraded the `room` dependency to `2.6.1`.
2025-01-03 17:06:48 +01:00

32 lines
1.1 KiB
Plaintext

plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
google()
maven {
setUrl("https://plugins.gradle.org/m2/")
}
maven { setUrl("https://jitpack.io") }
}
dependencies {
implementation("com.android.tools.build:gradle:8.7.2")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0")
implementation("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:2.0.0-1.0.24")
implementation("org.jacoco:org.jacoco.core:0.8.12")
implementation("org.jlleitschuh.gradle:ktlint-gradle:10.3.0")
implementation("com.google.apis:google-api-services-androidpublisher:v3-rev20230406-2.0.0") {
exclude(group = "com.google.guava", module = "guava")
}
implementation("com.google.http-client:google-http-client-jackson2:1.40.0") {
exclude(group = "com.google.guava", module = "guava")
}
implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.20.0")
implementation("com.googlecode.json-simple:json-simple:1.1")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation(gradleApi())
implementation(localGroovy())
}