-
Notifications
You must be signed in to change notification settings - Fork 114
/
build.gradle
44 lines (36 loc) · 945 Bytes
/
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
apply plugin: 'com.android.application'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
}
}
repositories {
jcenter()
}
android {
compileSdkVersion 22
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "me.sheimi.sgit"
minSdkVersion 14
targetSdkVersion 21
versionCode 113
versionName "1.3.3"
}
lintOptions {
abortOnError true
}
}
dependencies {
compile 'com.android.support:support-v13:21.0.3'
compile 'com.jcraft:jsch:0.1.53'
compile 'commons-io:commons-io:2.4'
compile 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
testCompile 'junit:junit:4.12'
testCompile "org.robolectric:robolectric:3.1.2"
testCompile "org.robolectric:shadows-support-v4:3.0"
}