Advertisement
Guest User

AndroidManifest.xml

a guest
Mar 5th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.76 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="fapptory_inc.rideshare">
  4.  
  5.     <application
  6.        android:allowBackup="true"
  7.        android:icon="@mipmap/ic_launcher"
  8.        android:label="@string/app_name"
  9.        android:supportsRtl="true"
  10.        android:theme="@style/AppTheme">
  11.         <!-- Activity declaration -->
  12.         <activity
  13.            android:name=".MainActivity"
  14.            android:label="@string/app_name"
  15.            android:theme="@style/AppTheme.NoActionBar">
  16.             <intent-filter>
  17.                 <action android:name="android.intent.action.MAIN" />
  18.                 <category android:name="android.intent.category.LAUNCHER" />
  19.             </intent-filter>
  20.         </activity>
  21.         <activity
  22.            android:name=".SettingsActivity"
  23.            android:label="@string/title_activity_settings"
  24.            android:parentActivityName=".MainActivity">
  25.         </activity>
  26.         <activity
  27.            android:name=".FacebookLogInActivity"
  28.            android:label="Facebook Login"
  29.            android:parentActivityName=".MainActivity">
  30.         </activity>
  31.         <activity android:name="com.facebook.FacebookActivity"
  32.            android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
  33.            android:theme="@android:style/Theme.Translucent.NoTitleBar"
  34.            android:label="@string/app_name">
  35.         </activity>
  36.         <!-- Facebook meta data -->
  37.         <meta-data
  38.            android:name="com.facebook.sdk.ApplicationId"
  39.            android:value="@string/facebook_app_id"/>
  40.     </application>
  41.  
  42.     <!-- User-permissions -->
  43.     <uses-permission android:name="android.permission.INTERNET" />
  44.  
  45. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement