forked from triportal/triportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·38 lines (31 loc) · 1.14 KB
/
build.gradle
File metadata and controls
executable file
·38 lines (31 loc) · 1.14 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
// 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:2.1.0-beta3'
}
allprojects {
repositories {
jcenter()
}
}
ext {
compileSdkVersion = 23
buildToolsVersion = "23.0.3"
supportLibVersion = '23.2.1'
minSdkVersion = 21
targetSdkVersion = 23
googlePlay = 'com.google.android.gms:play-services:8.4.0'
androidSupport = 'com.android.support:support-v4:23.2.1'
androidAppCompat = 'com.android.support:appcompat-v7:23.2.1'
androidDesign = 'com.android.support:design:23.2.1'
parse = 'com.parse:parse-android:1.13.0'
parseBolts = 'com.parse.bolts:bolts-tasks:1.4.0'
parseFacebookUtils = 'com.parse:parsefacebookutils-v4-android:1.10.4@aar'
parseTwitterUtils = 'com.parse:parsetwitterutils-android:1.10.5'
DragListView = 'com.github.woxthebox:draglistview:1.2.2'
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.9.0'
}
}