-
Notifications
You must be signed in to change notification settings - Fork 5
/
settings.gradle.kts
60 lines (54 loc) · 1.41 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
60
@file:Suppress("UnstableApiUsage")
include(":libs:curves")
pluginManagement {
repositories {
includeBuild("build-logic")
gradlePluginPortal()
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "ImageToolboxLibs"
include(":libs:cropper")
include(":libs:dynamic-theme")
include(":libs:colordetector")
include(":libs:gesture")
include(":libs:beforeafter")
include(":libs:image")
include(":libs:screenshot")
include(":libs:modalsheet")
include(":libs:gpuimage")
include(":libs:colorpicker")
include(":libs:systemuicontroller")
include(":libs:placeholder")
include(":libs:logger")
include(":libs:zoomable")
include(":libs:extendedcolors")
include(":libs:androidwm")
include(":libs:gif-converter")
include(":libs:apng")
include(":libs:snowfall")
include(":libs:svg")
include(":libs:jp2decoder")
include(":libs:tiffdecoder")
include(":libs:qoi-coder")
include(":libs:awebp")
include(":libs:avif")
include(":libs:psd")
include(":libs:djvu-coder")
include(":libs:fast-noise")
include(":libs:collages")
include(":libs:histogram")
include(":libs:ucrop")
include(":libs:opencv-tools")
include(":app")