I have an older Android Native app that was successfully using the Facebook plugin. So far I’ve been unsuccessful getting a working build (with the new project template) that includes facebook. The Facebook SDK source on Github hasn’t changed since then and is still on API 23. Is that the cause of the issues?
Is there new documentation that I’m missing? I’m still following:
https://docs.coronalabs.com/plugin/facebook-v4a/index.html
Has anyone successfully integrated facebook with a recent (API 27) project? I’m currently using build 3459.
I’ve updated the android support references in the Facebook gradle project to match what’s in the main project (23.4.0 -> 27.1.1)
I’m also getting a collision in my AndroidManifest.xml which I “fixed” by removing this (which seems bad):
\<activity android:name="com.facebook.FacebookActivity" android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation" android:theme="@android:style/Theme.Translucent.NoTitleBar" /\>
However I’m still stuck with build error in com.facebook.appevents.internal.AppEventUtilty because android.support.v4.BuildConfig isn’t defined.