-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathbuild.gradle
41 lines (35 loc) · 856 Bytes
/
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
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
namespace 'io.github.sceneview.sample.arcloudanchor'
compileSdk 35
defaultConfig {
applicationId "io.github.sceneview.sample.arcloudanchor"
minSdk 24
targetSdk 35
versionCode 1
versionName "1.0.0"
}
buildTypes {
release {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17
}
androidResources {
noCompress 'filamat', 'ktx'
}
}
dependencies {
implementation project(":samples:common")
// ArSceneView
releaseImplementation "io.github.sceneview:arsceneview:2.2.1"
debugImplementation project(":arsceneview")
}