reuse constants at the samples build.gradle too

This commit is contained in:
tibbi 2016-12-18 10:55:18 +01:00
parent 1de8aced24
commit 028235d988

View file

@ -3,15 +3,15 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-android-extensions'
android { android {
compileSdkVersion 25 compileSdkVersion propCompileSdkVersion
buildToolsVersion "25.0.1" buildToolsVersion propBuildToolsVersion
defaultConfig { defaultConfig {
applicationId "com.simplemobiletools.commons" applicationId "com.simplemobiletools.commons"
minSdkVersion 16 minSdkVersion propMinSdkVersion
targetSdkVersion 25 targetSdkVersion propTargetSdkVersion
versionCode 1 versionCode propVersionCode
versionName "1.0" versionName propVersionName
} }
buildTypes { buildTypes {
@ -27,7 +27,7 @@ android {
} }
dependencies { dependencies {
compile 'com.android.support:appcompat-v7:25.0.1' compile 'com.android.support:appcompat-v7:25.1.0'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile project(':commons') compile project(':commons')