-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
79 lines (67 loc) · 2.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
apply plugin: 'com.android.application'
/*
* Copyright (c) 2011 - 2024, Zingaya, Inc. All rights reserved.
*/
// Uncomment this line to enable push notifications
// google-services.json file is required
//apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
android {
compileSdk 33
defaultConfig {
applicationId "com.voximplant.demos.kotlin.video_call"
minSdk 21
targetSdk 33
multiDexEnabled true
versionCode 1
versionName "1.5.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
dataBinding true
buildConfig true
}
packagingOptions {
jniLibs {
useLegacyPackaging false
}
}
namespace 'com.voximplant.demos.kotlin.video_call'
}
dependencies {
implementation project(':shared')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.core:core-ktx:$core_ctx_version"
implementation "androidx.constraintlayout:constraintlayout:$constraintLayout_version"
implementation "androidx.vectordrawable:vectordrawable:$vectordrawable_version"
implementation "com.voximplant:voximplant-sdk:$voximplant_sdk_version"
implementation platform("com.google.firebase:firebase-bom:$firebase_bom_version")
implementation 'com.google.firebase:firebase-messaging-ktx'
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-crashlytics-ktx'
implementation "com.google.android.material:material:$material_version"
implementation "androidx.preference:preference-ktx:$preferences_ktx_version"
implementation "androidx.lifecycle:lifecycle-process:$lifecycle_ktx_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_ktx_version"
implementation "androidx.activity:activity-ktx:$activity_ktx_version"
implementation "androidx.multidex:multidex:$multidex_version"
}