forked from AgoraIO-Usecase/agora-ent-scenarios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (35 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
ext { ktv_is_modular = false }
apply from: 'vendors.gradle'
apply from: "${rootProject.getRootDir().absolutePath}/modular.gradle"
final def VERSION_SCENE_SHOW = "3.2.1"
android {
defaultConfig {
if (isModular()) {
applicationId "io.agora.scenes.show"
}
buildConfigField "String", "VERSION", "\"${VERSION_SCENE_SHOW}\""
buildConfigField "String", "CLOUD_PLAYER_KEY", "\"${CLOUD_PLAYER_KEY}\""
buildConfigField "String", "CLOUD_PLAYER_SECRET", "\"${CLOUD_PLAYER_SECRET}\""
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ":scenes:show:aars:SenseArSourceManager")
implementation project(path: ":scenes:show:aars:STMobileJNI")
implementation project(path: ":scenes:show:aars:HardwareBuffer")
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
}