-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathsettings.gradle
More file actions
39 lines (31 loc) · 1003 Bytes
/
Copy pathsettings.gradle
File metadata and controls
39 lines (31 loc) · 1003 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id 'com.android.application' version '9.2.1' apply false
id 'com.android.library' version '9.2.1' apply false
id 'org.jetbrains.kotlin.android' version '2.3.21' apply false
id 'org.jetbrains.kotlin.kapt' version '2.3.21' apply false
id 'org.jetbrains.kotlin.plugin.parcelize' version '2.3.21' apply false
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.21' apply false
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://clojars.org/repo" }
}
}
rootProject.name = "PipePipe"
include ':app'
include ':ffmpeg'
includeBuild('../PipePipeExtractor')