forked from AgoraIO-Usecase/agora-ent-scenarios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (29 loc) · 1.15 KB
/
build.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
ext { ktv_is_modular = false }
apply from: "${rootProject.getRootDir().absolutePath}/modular.gradle"
android {
defaultConfig {
if(isModular()){
applicationId "io.agora.scenes.show"
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ":scenes:show:aars:SenseArSourceManager")
implementation project(path: ":scenes:show:aars:STMobileJNI")
implementation project(":common:base")
implementation project(':common:ui-widget')
implementation rootProject.ext.deps.appcompat
implementation rootProject.ext.deps.annotation
api rootProject.ext.deps.material
implementation rootProject.ext.deps.palette_ktx
implementation rootProject.ext.deps.layout_kernel
implementation rootProject.ext.deps.header_classics
implementation rootProject.ext.deps.eventbus
implementation rootProject.ext.deps.xlog
kapt rootProject.ext.deps.glide_compiler
implementation rootProject.ext.deps.glide
implementation rootProject.ext.deps.lifecycle
implementation rootProject.ext.deps.fragment_ktx
implementation rootProject.ext.deps.syncManager
}