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

Commit 784ebb3

Browse files
committed
Gradle workaround to supporting the split of bolts-android
1 parent 2b730fb commit 784ebb3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

library/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ android {
2020
dependencies {
2121
compile 'com.parse:parse-android:1.11.0'
2222

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

2632
android.libraryVariants.all { variant ->

0 commit comments

Comments
 (0)