Created
August 11, 2022 22:30
-
-
Save dmitriy-chernysh/38ec2ca48d93d0242ca176702b60a599 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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