|
1 |
| -<?xml version="1.0" encoding="utf-8"?> |
2 |
| -<!-- |
| 1 | +<?xml version="1.0" encoding="utf-8"?><!-- |
3 | 2 | ~ Copyright (c) 2014, Parse, LLC. All rights reserved.
|
4 | 3 | ~
|
5 | 4 | ~ You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
|
|
19 | 18 | ~ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
20 | 19 | -->
|
21 | 20 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
22 |
| - package="com.parse.loginsample.basic" |
23 |
| - android:versionCode="1" |
24 |
| - android:versionName="1.0"> |
| 21 | + package="com.parse.loginsample.basic"> |
25 | 22 |
|
26 |
| - <uses-sdk |
27 |
| - android:minSdkVersion="9" |
28 |
| - android:targetSdkVersion="21"/> |
29 |
| - |
30 |
| - <uses-permission android:name="android.permission.INTERNET"/> |
31 |
| - <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 23 | + <uses-permission android:name="android.permission.INTERNET" /> |
| 24 | + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
32 | 25 |
|
33 | 26 | <application
|
34 | 27 | android:name=".SampleApplication"
|
|
41 | 34 | android:label="@string/app_name"
|
42 | 35 | android:launchMode="singleTop">
|
43 | 36 | <intent-filter>
|
44 |
| - <action android:name="android.intent.action.MAIN"/> |
| 37 | + <action android:name="android.intent.action.MAIN" /> |
45 | 38 |
|
46 |
| - <category android:name="android.intent.category.LAUNCHER"/> |
| 39 | + <category android:name="android.intent.category.LAUNCHER" /> |
47 | 40 | </intent-filter>
|
48 | 41 | </activity>
|
49 | 42 | <activity
|
50 |
| - android:name="com.parse.ui.ParseLoginActivity" |
| 43 | + android:name="com.parse.ui.login.ParseLoginActivity" |
51 | 44 | android:label="@string/app_name"
|
52 | 45 | android:launchMode="singleTop">
|
53 | 46 | <meta-data
|
54 |
| - android:name="com.parse.ui.ParseLoginActivity.PARSE_LOGIN_ENABLED" |
55 |
| - android:value="true"/> |
| 47 | + android:name="com.parse.ui.login.ParseLoginActivity.PARSE_LOGIN_ENABLED" |
| 48 | + android:value="true" /> |
56 | 49 | <meta-data
|
57 |
| - android:name="com.parse.ui.ParseLoginActivity.PARSE_LOGIN_EMAIL_AS_USERNAME" |
58 |
| - android:value="true"/> |
| 50 | + android:name="com.parse.ui.login.ParseLoginActivity.PARSE_LOGIN_EMAIL_AS_USERNAME" |
| 51 | + android:value="true" /> |
59 | 52 | <meta-data
|
60 |
| - android:name="com.parse.ui.ParseLoginActivity.FACEBOOK_LOGIN_ENABLED" |
61 |
| - android:value="true"/> |
| 53 | + android:name="com.parse.ui.login.ParseLoginActivity.FACEBOOK_LOGIN_ENABLED" |
| 54 | + android:value="true" /> |
62 | 55 | <meta-data
|
63 |
| - android:name="com.parse.ui.ParseLoginActivity.TWITTER_LOGIN_ENABLED" |
64 |
| - android:value="true"/> |
| 56 | + android:name="com.parse.ui.login.ParseLoginActivity.TWITTER_LOGIN_ENABLED" |
| 57 | + android:value="true" /> |
65 | 58 | </activity>
|
66 |
| - <activity android:name="com.facebook.FacebookActivity" |
67 |
| - android:configChanges= |
68 |
| - "keyboard|keyboardHidden|screenLayout|screenSize|orientation" |
69 |
| - android:theme="@android:style/Theme.Translucent.NoTitleBar" |
70 |
| - android:label="@string/app_name" /> |
71 | 59 |
|
72 | 60 | <meta-data
|
73 | 61 | android:name="com.parse.APPLICATION_ID"
|
|
77 | 65 | android:value="@string/parse_client_key" />
|
78 | 66 | <meta-data
|
79 | 67 | android:name="com.facebook.sdk.ApplicationId"
|
80 |
| - android:value="@string/facebook_app_id"/> |
| 68 | + android:value="@string/facebook_app_id" /> |
81 | 69 | </application>
|
82 | 70 |
|
83 | 71 | </manifest>
|
0 commit comments