forked from sinaweibosdk/weibo_android_sdk
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
45 lines (37 loc) · 878 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
45
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
apply plugin: 'com.android.application'
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 18
targetSdkVersion 22
}
signingConfigs {
debug {
storeFile file('debug.keystore') // MODIFY: your keystore
}
release {
storeFile file('debug.keystore') // MODIFY: your keystore
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':weibo-android-sdk')
// compile 'com.infstory:weibo-android-sdk:3.1.4' // MODIFY: Use net package instead
}