Android facebook applicationId cannot be null

后端 未结 5 2206
小鲜肉
小鲜肉 2020-12-02 12:08

I\'ve been following the following tutorial to integrate my app with Facebook. Facebook tutorial

I\'ve followed everything on the tutorial, but I\'ve been getting

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 12:27

    This little code modification at the activity helped me.

    @Override
        protected void onCreate(Bundle savedInstanceState) {
    
            FacebookSdk.sdkInitialize(getApplicationContext());
            AppEventsLogger.activateApp(getApplication());
    
            super.onCreate(savedInstanceState);
            ...................
            ...................    
    }
    

提交回复
热议问题