-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.dcl
48 lines (40 loc) · 1.07 KB
/
settings.gradle.dcl
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
pluginManagement {
repositories {
google() // Needed for the Android plugin, applied by the unified plugin
gradlePluginPortal()
}
}
plugins {
id("org.gradle.experimental.android-ecosystem").version("0.1.40")
}
rootProject.name = "example-android-app"
include("app")
include("list")
include("utilities")
defaults {
androidApplication {
jdkVersion = 17
compileSdk = 34
minSdk = 30
versionCode = 1
versionName = "0.1"
applicationId = "org.gradle.experimental.android.app"
testing {
dependencies {
implementation("org.junit.jupiter:junit-jupiter:5.10.2")
runtimeOnly("org.junit.platform:junit-platform-launcher")
}
}
}
androidLibrary {
jdkVersion = 17
compileSdk = 34
minSdk = 30
testing {
dependencies {
implementation("org.junit.jupiter:junit-jupiter:5.10.2")
runtimeOnly("org.junit.platform:junit-platform-launcher")
}
}
}
}