Reputation: 563
Using Facebook SDK 4.5. Tried using SDK 4.5 to 4.11. Problem still facing.
AS per this changelog : https://developers.facebook.com/docs/android/change-log-4.x
Its changed to AppEventsLogger.activateApp(Application)
But I am facing trouble while implementing it.
Upvotes: 44
Views: 13030
Reputation: 1412
Just replace AppEventsLogger.activateApp(this)
to
AppEventsLogger.activateApp(getApplication());
Upvotes: 99