Skip to content

Instantly share code, notes, and snippets.

@dmitriy-chernysh
Created August 11, 2022 22:30
Show Gist options
  • Save dmitriy-chernysh/38ec2ca48d93d0242ca176702b60a599 to your computer and use it in GitHub Desktop.
Save dmitriy-chernysh/38ec2ca48d93d0242ca176702b60a599 to your computer and use it in GitHub Desktop.
<application>
<activity
android:name="com.facebook.FacebookActivity"
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name"
android:theme="@style/AppTheme.Facebook.NoActionBar"
tools:replace="android:theme" />
<activity
android:name="com.facebook.CustomTabActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="@string/fb_login_protocol_scheme" />
</intent-filter>
</activity>
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id" />
<meta-data
android:name="com.facebook.sdk.ClientToken"
android:value="@string/facebook_client_token" />
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment