This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
ensichat/app/build.gradle

56 lines
1.0 KiB
Groovy
Raw Normal View History

2014-10-03 09:55:35 +00:00
apply plugin: 'com.android.application'
2014-10-07 13:20:24 +00:00
apply plugin: 'android-scala'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "jp.leafytree.gradle:gradle-android-scala-plugin:1.0"
}
}
dependencies {
compile "org.scala-lang:scala-library:2.11.2"
}
2014-10-03 09:55:35 +00:00
android {
compileSdkVersion 21
buildToolsVersion "19.1.0"
2014-10-03 09:55:35 +00:00
defaultConfig {
applicationId "com.nutomic.ensichat"
minSdkVersion 15
targetSdkVersion 21
2014-10-03 09:55:35 +00:00
versionCode 1
versionName "0.1.0"
}
2014-10-07 13:20:24 +00:00
sourceSets {
main {
scala {
srcDir "src/main/scala"
}
}
androidTest {
scala {
srcDir "src/androidTest/scala"
}
}
}
2014-10-03 09:55:35 +00:00
buildTypes {
2014-10-07 13:20:24 +00:00
debug {
runProguard true
proguardFile file("proguard-rules.pro")
applicationIdSuffix ".debug"
2014-10-07 13:20:24 +00:00
}
2014-10-03 09:55:35 +00:00
release {
2014-10-07 13:20:24 +00:00
runProguard true
proguardFile file("proguard-rules.pro")
2014-10-03 09:55:35 +00:00
}
}
}