-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (48 loc) · 1.62 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
48
49
50
51
52
53
54
55
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3'
//classpath 'com.github.dcendents:android-maven-plugin:1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
}
}
allprojects {
repositories {
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 20
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 8
targetSdkVersion 17
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:20.0.0'
compile files('libs/CWAC-AdapterWrapper.jar')
compile files('libs/facebook-android-sdk.jar')
compile files('libs/signpost-commonshttp4-1.2.1.1.jar')
compile files('libs/signpost-core-1.2.1.1.jar')
compile files('libs/twitter4j-async-3.0.4-20130619.015151-2.jar')
compile files('libs/twitter4j-core-3.0.4-SNAPSHOT.jar')
compile files('libs/twitter4j-examples-3.0.4-SNAPSHOT.jar')
compile files('libs/twitter4j-media-support-3.0.4-SNAPSHOT.jar')
compile files('libs/twitter4j-stream-3.0.4-SNAPSHOT.jar')
}
//Comment this or leave it commented if you don't know what is it for
//apply from: 'gradle-mvn-push.gradle'
apply from: 'mavenInstall.gradle'
apply from: 'bintray.gradle'