2017-05-21 19 views

答えて

1

彼らは、アプリケーションクラスのonCreate()メソッドで初期化を要求しています。

public class MyApplication extends Application { 
// Updated your class body: 

@Override 
public void onCreate() { 
    super.onCreate(); 
    // Initialize the SDK before executing any other operations, 
    FacebookSdk.sdkInitialize(getApplicationContext()); 
    AppEventsLogger.activateApp(this); 
} 

Link to the original answer

+0

が、私は別の活動でそれを複数回初期化する必要がありますか? – AlanSTACK