Hey I know this was asked before, but none of the solutions seem to help. I\'m using first time Facebook SDK in my application.
What I\'ve tried:
I had tried
For Flutter Devs running into this issue.
Make sure you have followed the steps 1-6 as given in the facebook documentation.
Adding FacebookSdk.sdkInitialize() in your MainActivity file won't fix the issue.
You have to use FacebookSdk.sdkInitialize(getApplicationContext());
before setContentView(R.layout.activity_main);
as documentation states out. In case you need a complete facebook login example, check this one here.