-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (53 loc) · 1.31 KB
/
build.gradle
File metadata and controls
61 lines (53 loc) · 1.31 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0+'
classpath 'com.github.dcendents:android-maven-plugin:1.0'
}
}
apply plugin: 'com.android.application'
project.archivesBaseName = 'crashcatcher'
group = 'com.sibext'
version = '1.6.0'
repositories {
mavenCentral()
maven {
url "http://mvn.sibext.com/"
}
}
android {
compileSdkVersion 19
buildToolsVersion '20.0.0'
defaultConfig {
versionCode 1
versionName version
minSdkVersion 11
targetSdkVersion 19
}
sourceSets {
main.setRoot('src')
main {
manifest.srcFile 'lib_version/AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
assets.srcDirs = ['assets']
res.srcDirs = ['res']
}
androidTest.setRoot('tests')
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
lintOptions {
abortOnError false
}
}
dependencies {
compile 'com.taskadapter:redmine-java-api:1.23.1'
compile 'org.apache.commons:commons-io:1.3.2'
compile 'com.sothree.slidinguppanel:library:3.0.0'
}