Make sure that you set up the account set correctly. The error shows the wrong setting in my case.
:
Add Dependency to Gradle for Account Set
repositories { jcenter() } dependencies { compile 'com.facebook.android:account-kit-sdk:4.+' }
b. Android Manifest
Add the following to AndroidManifest.xml:
<meta-data android:name="com.facebook.accountkit.ApplicationName" android:value="@string/app_name" /> <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id" /> <meta-data android:name="com.facebook.accountkit.ClientToken" android:value="@string/account_kit_client_token" /> <activity android:name="com.facebook.accountkit.ui.AccountKitActivity" android:theme="@style/AppLoginTheme" tools:replace="android:theme"/>
Please follow the links:
1) Link 1
2) Link 2
source share