2016-08-13 06:11:29 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-03-16 22:02:37 +00:00
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion "27.0.3"
|
2016-08-13 06:11:29 +00:00
|
|
|
|
2018-02-19 21:58:01 +00:00
|
|
|
defaultConfig {
|
2018-02-19 22:45:39 +00:00
|
|
|
resConfigs "en_US", "cs", "tr", "ca", "ko", "pl", "it",
|
|
|
|
"eo", "ru", "zh_CN", "de", "fr", "es", "pt", "fi", "hu", "in"
|
2018-02-19 21:58:01 +00:00
|
|
|
}
|
|
|
|
|
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
|
2018-07-08 23:10:36 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-02-23 19:37:09 +00:00
|
|
|
implementation project(':SPD-classes')
|
2018-04-11 03:08:42 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|