-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.gradle
33 lines (27 loc) · 1.02 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
ext { joy_is_modular = false }
apply from: "${rootProject.getRootDir().absolutePath}/modular.gradle"
final def VERSION_SCENE_KTV = "4.10.1"
android {
defaultConfig {
if(isModular()){
applicationId "io.agora.scenes.joy"
}
buildConfigField "String", "VERSION", "\"${VERSION_SCENE_KTV}\""
}
}
dependencies {
implementation project(":common:base")
implementation project(':common:ui-widget')
implementation project(':RTMSyncManager')
implementation rootProject.ext.deps.lyricsView
implementation rootProject.ext.deps.annotation
implementation rootProject.ext.deps.material
implementation rootProject.ext.deps.palette_ktx
implementation rootProject.ext.deps.layout_kernel
implementation rootProject.ext.deps.header_classics
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.rtm
}