I am trying to install Facebook SDK in Android Studio 1.0.2. However, i can not find any tutorial to tell how can i achieve this. Because 1.0.2 version of Android Studio is very different from the previous versions. How can i install Facebook SDK in Android Studio 1.0.2
Asked
Active
Viewed 391 times
-1
-
possible duplicate of [using facebook sdk in android studio](http://stackoverflow.com/questions/19961828/using-facebook-sdk-in-android-studio) – JBaruch Jan 10 '15 at 19:43
1 Answers
1
Well, nothing complicated or new there, comparing to any previous verison of Android Studio.
Verify that you have repositories configured:
repositories { jcenter() }
Add Facebook SDK:
dependencies { compile 'com.facebook.android:facebook-android-sdk:3.22.0' }
Refresh Gradle project.

JBaruch
- 22,610
- 5
- 62
- 90