Getting Started with the Facebook SDK for Android

This documentation explains how to get started integrating your Android app with Facebook by using the Facebook SDK for Android. The current version of the Facebook SDK for Android is version 12.0.0 and requires the Android API 15. For more information about versions and features, see Facebook SDK for Android.

When you use the Facebook SDK, some events in your app are automatically logged and collected unless you disable automatic event logging. For details about what information is collected and how to disable automatic event logging, see Automatic App Event Logging.

You can set up your app to use the Facebook SDK for Android in the following ways:

  • By using the Quick Start.
  • By setting up your project with the Facebook SDK for Android.

Quick Start

To get a Facebook App ID, configure your app's settings, and import the Facebook SDK for Android, click on the button below and follow the instructions.

Quick Start for Android

Understand the Advertising ID Permission

Beginning with version 13.0.0, each app that you create by using the Facebook SDK for Android automatically adds the Advertising ID Permission to your app. For more information, see Advertising ID - Play Console Help.

In some cases, you might want to opt out of including the Advertising ID permission in your app. For example, if the customers for your app are children and families, the Advertising ID Permission might not be relevant. To exclude the Advertising ID Permission from your app, follow the instructions later in this documentation.

Android Studio Setup

Create Your Project

To use the Facebook SDK in an Android Studio project, add the SDK as a build dependency and import the SDK.

  1. Go to Android Studio | New Project | Minimum SDK.

  2. Select API 15: Android 4.0.3 (IceCreamSandwich) or higher and create your new project.

  3. Open the file Gradle Scripts | build.gradle (Project: <your_project>) and add the following:

    mavenCentral()
    
  4. Save and close the build.gradle (Project: <your_project>) file.

  5. Open the file Gradle Scripts | build.gradle (Module: app) and add the following to the dependencies section:

    implementation 'com.facebook.android:facebook-android-sdk:latest.release'
    

  6. Save and close the build.gradle (Module: app) file.

  7. Build your project. Now you can import com.facebook.FacebookSdk into your app.

Update Your Manifest

Add your App ID and Client Token to your project's string file and update the manifest file. Do the following:

  1. Open the /app/res/values/strings.xml file in your app project.

  2. Add string elements with the names facebook_app_id and facebook_client_token, and set the values to your App ID and Client Token. For example, if your app ID is 1234 and your client token is 56789 your code looks like the following:

    <string name="facebook_app_id">1234</string>
    <string name="facebook_client_token">56789</string>
    
  3. Open the /app/manifests/AndroidManifest.xml file in your app project.

  4. Add meta-data elements to the application element for your app ID and client token:

    <application android:label="@string/app_name" ...>
        ...
        <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
        <meta-data android:name="com.facebook.sdk.ClientToken" android:value="@string/facebook_client_token"/>
        ...
    </application>
    
  5. Add a uses-permission element to the manifest after the application element:

    <uses-permission android:name="android.permission.INTERNET"/>
    
  6. (Optional) To opt out of the Advertising ID Permission, add a uses-permission element to the manifest after the application element:

    <uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove"/>
    
  7. Build your project.

Enable Sharing

If you share links, images, or video from your app, declare the FacebookContentProvider authority in the manifest. Do the following:

  1. Open the /app/manifests/AndroidManifest.xml file in your app project.

  2. Add a provider element to the manifest for the FacebookContentProvider authority. Append your app ID to the end of the authorities value. For example, if your app id is 1234, the declaration looks like the following:

    <provider android:authorities="com.facebook.app.FacebookContentProvider1234"
        android:name="com.facebook.FacebookContentProvider"
        android:exported="true" />
    
  3. Build your project.

Running Sample Apps

The following samples come with the Facebook SDK for Android:

You can experiment with samples by importing the Facebook SDK into an Android Studio project. The samples have a project dependency rather than a central repository dependency via maven central or jcenter. This is so that when a local copy of the SDK gets updates, the samples reflect the changes.

To run samples apps quickly, you can generate key hashes for your development environments. Add these to your Facebook developer profile for the sample apps. Keytool, for generating the key hashes, is included with the Java SE Development Kit (JDK) that you installed as part of setting up your development environment. OpenSSL is available for download from OpenSSL.

On OS X, run:

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

On Windows, you need the following:

Run the following command in a command prompt in the Java SDK folder. This generates a 28 character string.

keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl
base64

Go to the Facebook Developer site. Log into Facebook and, using the dropdown menu in the top-right, go to Developer Settings:

In your developer settings, select Sample App from the menu, and add and save your key hash into your profile:

You can add multiple key hashes if you develop with multiple machines.

You can now compile and run all of the samples - including those that use Facebook Login.

Create a Development Key Hash

Facebook uses the key hash to authenticate interactions between your app and the Facebook app. If you run apps that use Facebook Login, you need to add your Android development key hash to your Facebook developer profile.

For the version of your app that you release to you also need to generate and set a Release Key Hash.

On either OS X or Windows you can get a key hash by generating it or by using the value returned by Settings.getApplicationSignature(Context). For instructions, see Running Sample Apps .

Create a Release Key Hash

To authenticate the exchange of information between your app and the Facebook, you need to generate a release key hash and add this to the Android settings within your Facebook App ID. Without this, your Facebook integration may not work properly when you release your app to the store.

In a previous step, you should have updated your Facebook Developer Settings with the key hashes for your development environments.

When publishing your app, it is typically signed with a different signature to your development environment. Therefore, you want to make sure you create a Release Key Hash and add this to the Android settings for Facebook App ID.

To generate a hash of your release key, run the following command on Mac or Windows substituting your release key alias and the path to your keystore.

On Mac OS, run:

keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEY_PATH> | openssl sha1 -binary | openssl base64

On Windows, you need the following:

Run the following command in a command prompt in the Java SDK folder:

keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEY_PATH> | PATH_TO_OPENSSL_LIBRARY\bin\openssl sha1 -binary | PATH_TO_OPENSSL_LIBRARY\bin\openssl base64

Make sure to use the password that you set when you first created the release key.

This command should generate a 28 characher string. Copy and paste this Release Key Hash into your Facebook App ID's Android settings.

You should also check that your Facebook App ID's Android setting also contain the correct package name and main activity class for your Android package.

Use the Facebook SDK for Android with Maven

You can declare the Maven dependency with the latest available version of the Facebook SDK for Android.

<dependency>
  <groupId>com.facebook.android</groupId>
  <artifactId>facebook-android-sdk</artifactId>
  <version>PUT_LATEST_VERSION_HERE</version>
</dependency> 

Troubleshooting Sample Apps

If you have a problem running a sample app, it may be related to the key hash. You may see one of the following scenarios:

  • A native Login Dialog appears but after accepting the permissions you are still in a logged out state. The logcat also contains an exception:
12-20 10:23:24.507: W/fb4a:fb:OrcaServiceQueue(504):
com.facebook.orca.protocol.base.ApiException: remote_app_id does not match stored id
  • A non-native Login Dialog appears with an error message: ''..App is Misconfigured for facebook login...''.

Check your key hash and you can make sure you use the correct key hash. I

You can also manually modify the sample code to use the right key hash. For example in HelloFacebookSampleActivity class make a temporary change to the onCreate():

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    
    // Add code to print out the key hash
    try {
        PackageInfo info = getPackageManager().getPackageInfo(
                "com.facebook.samples.hellofacebook", 
                PackageManager.GET_SIGNATURES);
        for (Signature signature : info.signatures) {
            MessageDigest md = MessageDigest.getInstance("SHA");
            md.update(signature.toByteArray());
            Log.d("KeyHash:", Base64.encodeToString(md.digest(), Base64.DEFAULT));
            }
    } catch (NameNotFoundException e) {
        
    } catch (NoSuchAlgorithmException e) {
        
    }
    
    ...

Save your changes and re-run the sample. Check your logcat output for a message similar to this:

12-20 10:47:37.747: D/KeyHash:(936): 478uEnKQV+fMQT8Dy4AKvHkYibo=

Save the key hash in your developer profile. Re-run the samples and verify that you can log in successfully.