flutter_fb_sdk 1.0.0 copy "flutter_fb_sdk: ^1.0.0" to clipboard
flutter_fb_sdk: ^1.0.0 copied to clipboard

discontinued
PlatformAndroidiOS

A flutter plugin to get facebook deep links and log app events using the latest Facebook SDK to include support for iOS 14

Facebook Sdk For Flutter #

A fork from flutter_facebook_sdk with updated lastest SDK version

flutter_fb_sdk allows you to fetch deep links, deferred deep links and log facebook app events.

This was created using the latest facebook SDK, supports app events and deeps links for iOS and Android.

Prerequisites #

First of all, if you don't have one already, you must first create an app at Facebook developers: https://developers.facebook.com/

Get your app id (referred to as [APP_ID] below)

For IOS #

  • If your code does not have CFBundleURLTypes, add the following just before the final element:
 <key>CFBundleURLTypes</key>
    <array>
      <dict>
      <key>CFBundleURLSchemes</key>
      <array>
        <string>fb[APP_ID]</string>
      </array>
      </dict>
    </array>
    <key>FacebookAppID</key>
    <string>[APP_ID]</string>
    <key>FacebookDisplayName</key>
    <string>[DISPLAY_NAME]</string>
    <key>FacebookAutoLogAppEventsEnabled</key>
    <true/>
    <key>FacebookAdvertiserIDCollectionEnabled</key>
    <true/>

For Android #

  • Add the following to your strings.xml file

<string name="facebook_app_id">[APP_ID]</string>
<string name="fb_login_protocol_scheme">fb[APP_ID]</string>

  • Add the following meta tag to the application element in AndroidManifest.xml

<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>

  • Add the following element in AndroidManifest.xml

<uses-permission android:name="android.permission.INTERNET"/>

  • Don't forget to replace [APP_ID] with your Application ID
0
likes
120
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter plugin to get facebook deep links and log app events using the latest Facebook SDK to include support for iOS 14

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on flutter_fb_sdk

Packages that implement flutter_fb_sdk