-
Notifications
You must be signed in to change notification settings - Fork 310
/
settings.gradle.kts
59 lines (55 loc) · 1.51 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
58
59
rootProject.name = "sketch"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("libs.versions.toml"))
}
}
}
/*
* Release
*/
include(":sketch-animated-core")
include(":sketch-animated-gif")
include(":sketch-animated-gif-koral")
include(":sketch-animated-heif")
include(":sketch-animated-webp")
include(":sketch-compose")
include(":sketch-compose-core")
include(":sketch-compose-resources")
include(":sketch-core")
include(":sketch-extensions-appicon")
include(":sketch-extensions-apkicon")
include(":sketch-extensions-core")
include(":sketch-extensions-compose")
include(":sketch-extensions-compose-resources")
include(":sketch-extensions-view")
include(":sketch-extensions-viewability")
include(":sketch-http")
include(":sketch-http-core")
include(":sketch-http-hurl")
include(":sketch-http-ktor2")
include(":sketch-http-ktor2-core")
include(":sketch-http-ktor3")
include(":sketch-http-ktor3-core")
include(":sketch-http-okhttp")
include(":sketch-singleton")
include(":sketch-svg")
include(":sketch-video")
include(":sketch-video-core")
include(":sketch-video-ffmpeg")
include(":sketch-view")
include(":sketch-view-core")
/*
* Private
*/
include(":sample")
include(":internal:componentLoaderTest")
include(":internal:images")
include(":internal:test")
include(":internal:test-compose")
include(":internal:test-http")
include(":internal:test-singleton")
include(":internal:test-singleton-view")
include(":internal:test-view")