-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
60 lines (51 loc) · 1.27 KB
/
build.gradle.kts
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
import com.android.build.gradle.internal.tasks.factory.dependsOn
plugins {
id("com.android.application").version("8.3.2")
id("org.jetbrains.kotlin.android").version("1.9.0")
}
android {
namespace = "com.banuba.sdk.example.video_recording"
compileSdk = 34
defaultConfig {
applicationId = "com.banuba.sdk.example.video_recording"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"
vectorDrawables {
useSupportLibrary = true
}
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt")
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
}
task("copyEffects") {
copy {
from("../common/effects")
into("src/main/assets/bnb-resources/effects")
}
}
gradle.projectsEvaluated {
project.tasks.preBuild.dependsOn("copyEffects")
}
dependencies {
implementation(project(":common"))
}