Facebook Sdk wurde nicht initialisiert FacebookSdk.sdkInitialize ()

Hey, ich weiß, das wurde vorher gefragt, aber keine der Lösungen scheint zu helfen. Ich verwende zum ersten Mal Facebook SDK in meiner Anwendung.

Was ich versucht habe:

Ich hatte die meisten Dinge ausprobiert, die auf @ gefunden wurdeInterne habe aber nichts dazu bekommen.

Hier ist meine MainActivity.java

 public class MainActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    FacebookSdk.sdkInitialize(getApplicationContext());
   } 
}

Hier ist meine Activitymain.xml:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:facebook="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

 <com.facebook.login.widget.LoginButton
    android:id="@+id/connectWithFbButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:layout_gravity="center_horizontal"
    android:text="  connect_with_facebook" /> 
</LinearLayout>

Sieh mein Logcat:

 05-13 16:30:39.332: E/AndroidRuntime(10264): Caused by: The SDK has not been initialized, make sure to call FacebookSdk.sdkInitialize() first.

Antworten auf die Frage(12)

Ihre Antwort auf die Frage