-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
57 lines (40 loc) · 1.47 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
pluginManagement {
repositories {
google()
mavenCentral()
mavenLocal()
maven("https://jitpack.io")
gradlePluginPortal()
}
plugins {
// https://mvnrepository.com/artifact/com.android.tools.build/gradle
id("com.android.application") version "8.7.3"
// https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib
kotlin("android") version "2.1.0"
// https://plugins.gradle.org/plugin/com.github.breadmoirai.github-release
id("com.github.breadmoirai.github-release") version "2.5.2"
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("versionCode", "33")
// https://developer.android.com/build/jdks
version("jvmToolchain", "21")
// https://developer.android.com/tools/releases/build-tools
version("buildToolsVersion", "35.0.0")
// https://developer.android.com/tools/releases/platforms
version("compileSdk", "35")
version("minSdk", "28")
// https://mvnrepository.com/artifact/androidx.test/runner
library("androidTest.runner", "androidx.test:runner:1.6.2")
// https://mvnrepository.com/artifact/androidx.test.ext/junit-ktx
library("androidTest.junit", "androidx.test.ext:junit-ktx:1.2.1")
// https://mvnrepository.com/artifact/androidx.test.uiautomator/uiautomator
library("androidTest.uiautomator", "androidx.test.uiautomator:uiautomator:2.3.0")
// https://mvnrepository.com/artifact/junit/junit
library("test.junit", "junit:junit:4.13.2")
}
}
}
include(":CallBlocker")