-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
41 lines (39 loc) · 1018 Bytes
/
settings.gradle.kts
File metadata and controls
41 lines (39 loc) · 1018 Bytes
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
pluginManagement {
val kspVersion: String by settings
val kotlinVersion: String by settings
plugins {
id("com.google.devtools.ksp") version kspVersion
id("org.jetbrains.kotlin.jvm") version "1.5.30"
}
repositories {
gradlePluginPortal()
}
}
rootProject.name = "com.nevmem.survey"
include("android:app")
include("android:network")
include("android:preferences")
include("android:report")
include("android:settings")
include("android")
include("backend:auth")
include("backend:common")
include("backend:converters")
include("backend:core")
include("backend:env")
include("backend:fs")
include("backend:helpers")
include("backend:invites")
include("backend:media")
include("backend:push:client")
include("backend:push:pushapi")
include("backend:push")
include("backend:role")
include("backend:survey")
include("backend:task")
include("backend:users")
include("backend:worker:api")
include("backend:worker")
include("common:data")
include("util:exporter")
include("util")