forked from samsung-shv-e160/StreamHub-Android-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
76 lines (61 loc) · 1.41 KB
/
build.gradle
File metadata and controls
76 lines (61 loc) · 1.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
apply plugin: 'android-library'
apply plugin: 'maven'
version = "0.1.1"
group = "com.livefyre"
repositories {
//mavenLocal()
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
}
android {
compileSdkVersion 17
buildToolsVersion "17.0"
defaultConfig {
minSdkVersion 8
}
}
subprojects {
delegate.tasks.each {task ->
task.enabled = false;
}
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
dependencies {
//compile fileTree(dir: 'libs', include: '*.jar')
//compile files('libs/android-async-http-1.4.4.jar')
//compile('com.loopj.android:android-async-http:1.4.4@aar') {
// exclude group: 'com.android.support', module: 'support-v4'
//}
compile 'com.loopj.android:android-async-http:1.4.4@jar'
}
uploadArchives {
repositories {
mavenDeployer {
repository url: 'file://' + new File(System.getProperty('user.home'), '.m2/repository').absolutePath
}
}
}
task install(dependsOn: uploadArchives)
task sourceJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.allSource
}
configurations{
sourceArchives
}
artifacts{
sourceArchives sourceJar
}
install.configuration = configurations.sourceArchives