-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·39 lines (32 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
// android command plugin
classpath 'com.novoda:gradle-android-command-plugin:1.5.0'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
ext {
//Android
androidBuildToolsVersion = "23.0.1"
androidMinSdkVersion = 14
androidTargetSdkVersion = 22
androidCompileSdkVersion = 22
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
}
}