blob: afe5efdb8c194dbd68fc15bcfef135f3ffb6eeb7 (
plain)
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
|
apply plugin: 'com.android.application'
apply from: "../../../DiligentTools/NativeApp/Android/android_common.gradle"
android {
defaultConfig {
applicationId = 'com.diligentengine.unityemulator.ghostcubescene.GhostCubeSceneApplication'
}
buildTypes {
release {
minifyEnabled = false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
sourceSets {
main {
assets.srcDirs = ['../../GhostCubeScene/assets']
}
}
}
buildDir '../build/GhostCubeScene'
dependencies {
implementation project(":Common")
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
}
|