-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
47 lines (39 loc) · 1.03 KB
/
build.gradle
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:1.2.3"
classpath "jp.leafytree.gradle:gradle-android-scala-plugin:1.4"
}
}
repositories {
jcenter()
}
apply plugin: "com.android.application"
apply plugin: "jp.leafytree.android-scala"
android {
// Can be built with API Level 16 or higher, while this app retains runtime compatibility from API Level 10. Please refer to targetSdkVersion property
compileSdkVersion "android-16"
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 10
targetSdkVersion 16
versionCode 1
versionName "1.0"
}
buildTypes {
debug {
minifyEnabled true
proguardFile file("proguard-rules.txt")
}
release {
minifyEnabled true
proguardFile file("proguard-rules.txt")
}
}
}
dependencies {
compile "org.scala-lang:scala-library:2.11.7"
compile "org.scaloid:scaloid_2.11:4.0"
}