Skip to content
This repository was archived by the owner on Feb 14, 2020. It is now read-only.

Update parse-android to 1.11.0 #10

Merged
merged 2 commits into from
Dec 8, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ android {
}

dependencies {
compile 'com.parse:parse-android:1.10.2'
compile 'com.parse:parse-android:1.11.0'

compile 'com.facebook.android:facebook-android-sdk:3.21.0'
// We need to exclude bolts-android since facebook-android-sdk 3.x.x depends on a version of
// bolts-android before being split into bolts-tasks and bolts-applinks.
compile ('com.facebook.android:facebook-android-sdk:3.23.1') {
exclude module: 'bolts-android'
}
// facebook-android-sdk 3.x.x depends on AppLinks inside bolts-android
compile 'com.parse.bolts:bolts-applinks:1.3.0'
}

android.libraryVariants.all { variant ->
Expand Down