-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
48 lines (40 loc) · 1.08 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
47
48
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
}
android {
compileSdkVersion 33
defaultConfig {
applicationId "com.banuba.sdk.agorapluginexample"
minSdkVersion 22
targetSdkVersion 33
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
viewBinding true
}
}
dependencies {
// Banuba Face AR dependency for playing AR filters
implementation "com.banuba.sdk:banuba_sdk:1.16.0"
// Banuba extension for Agora
implementation 'com.banuba.sdk.android:agora-extension:1.5.1'
// Agora dependency
implementation 'io.agora.rtc:full-sdk:4.3.2'
implementation 'androidx.appcompat:appcompat:1.6.0'
}