blob: 3217c6cf0164a9b6aff26e1661b4747027dc3ff3 (
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
29
|
apply plugin: 'com.android.application'
apply from: "../../../Common/NativeApp/Android/android_common.gradle"
android {
defaultConfig {
applicationId = 'com.diligentengine.testapp'
}
buildTypes {
release {
minifyEnabled = false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
sourceSets {
main {
assets.srcDirs = ['../../TestApp/assets']
}
}
}
buildDir '../build/TestApp'
dependencies {
implementation project(":Common")
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:25.4.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.1'
}
|