Last active
August 29, 2015 14:25
-
-
Save koriner/256cf5b3321eeb61d5bf to your computer and use it in GitHub Desktop.
distriqt FacebookAPI - Example Android manifest settings
This file contains hidden or 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
<android> | |
<manifestAdditions><![CDATA[ | |
<manifest android:installLocation="auto"> | |
<uses-permission android:name="android.permission.INTERNET"/> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<application> | |
<activity android:name="com.facebook.FacebookActivity" android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:label="@string/app_name" /> | |
<activity android:name="com.distriqt.extension.facebookapi.FacebookAPILoginActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"></activity> | |
<activity android:name="com.distriqt.extension.facebookapi.FacebookAPIDialogActivity"></activity> | |
<activity android:name="com.distriqt.extension.facebookapi.FacebookAPIMessageDialogActivity"></activity> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
<!-- IMPORTANT: Do not remove the backslash and space at the beginning of the following value string. --> | |
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="\ [YOUR_FACEBOOK_APP_ID]"/> | |
<provider android:authorities="com.facebook.app.FacebookContentProvider[YOUR_FACEBOOK_APP_ID]" android:name="com.facebook.FacebookContentProvider" android:exported="true" /> | |
</application> | |
</manifest> | |
]]></manifestAdditions> | |
</android> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment