-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
37 lines (33 loc) · 1.03 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '20.0.0'
defaultConfig {
applicationId "com.eduinfinity.dimu.translatehelper"
minSdkVersion 16
targetSdkVersion 19
versionCode 3
versionName "0.0.3"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
// maven { url "http://dl.bintray.com/populov/maven" }
maven { url 'http://maven.oschina.net/content/groups/public/' }
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:20.0.0'
compile 'com.loopj.android:android-async-http:1.4.6'
compile 'de.greenrobot:eventbus:2.2.1'
compile 'com.github.johnpersano:supertoasts:1.3.4@aar'
compile project(':swipeMenuListView')
compile project(':vitamio')
// compile 'com.viewpagerindicator:library:2.4.1@aar'
}