2016-08-13 06:11:29 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-08-17 04:06:40 +00:00
|
|
|
compileSdkVersion 26
|
2017-10-24 21:06:34 +00:00
|
|
|
buildToolsVersion "26.0.2"
|
2016-08-13 06:11:29 +00:00
|
|
|
|
|
|
|
buildTypes {
|
2017-05-25 20:02:10 +00:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".indev"
|
|
|
|
versionNameSuffix '-INDEV'
|
|
|
|
}
|
2016-08-13 06:11:29 +00:00
|
|
|
release {
|
2016-08-18 17:01:48 +00:00
|
|
|
shrinkResources true
|
2016-08-13 06:11:29 +00:00
|
|
|
minifyEnabled true
|
2017-11-06 07:20:44 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':SPD-classes')
|
|
|
|
}
|