forked from parse-community/ParseUI-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 753 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 753 Bytes
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
allprojects {
repositories {
mavenCentral()
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
ext {
compileSdkVersion = 23
buildToolsVersion = "23.0.1"
minSdkVersion = 15
targetSdkVersion = 23
androidSupport = 'com.android.support:support-v4:23.1.1'
parse = 'com.parse:parse-android:1.12.0'
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.9.0'
parseFacebookUtils = 'com.parse:parsefacebookutils-v4-android:1.10.4@aar'
parseTwitterUtils = 'com.parse:parsetwitterutils-android:1.10.4'
}