-
Notifications
You must be signed in to change notification settings - Fork 13
/
settings.gradle
42 lines (39 loc) · 1.25 KB
/
settings.gradle
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
versionCatalogs {
libs {
// system
alias('coreKtx').to('androidx.core', 'core-ktx').version('1.8.0')
alias('material').to('com.google.android.material', 'material').version('1.9.0')
alias('appcompat').to('androidx.appcompat', 'appcompat').version('1.6.1')
alias('constraintlayout').to('androidx.constraintlayout', 'constraintlayout').version('2.1.4')
// test
alias('junit').to('junit', 'junit').version('4.13.2')
alias('androidxJunit').to('androidx.test.ext', 'junit').version('1.1.5')
alias('androidxEspressoCore').to('androidx.test.espresso', 'espresso-core').version('3.5.1')
}
}
}
rootProject.name = "FFMpegDemo"
include ':libutils'
include ':libbase'
include ':libpng'
include ':librender'
include ':libffplayer'
include ':libhwplayer'
include ':libcamerakit'
include ':libmediapicker'
include ':app'
include ':libjpeg'