-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
82 lines (65 loc) · 2.91 KB
/
AndroidManifest.xml
File metadata and controls
82 lines (65 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.firebase.ui.auth">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<meta-data
android:name="io.fabric.ApiKey"
android:value="@string/twitter_consumer_secret"/>
<activity
android:name=".KickoffActivity"
android:label="@string/default_toolbar_title"
android:exported="false"
android:theme="@style/Theme.AppCompat.NoActionBar"/>
<activity
android:name=".ui.email.RecoverPasswordActivity"
android:label="@string/title_recover_password_activity"
android:exported="false"
android:theme="@style/FirebaseUI"/>
<activity
android:name=".ui.email.RegisterEmailActivity"
android:label="@string/title_register_email_activity"
android:exported="false"
android:theme="@style/FirebaseUI"/>
<activity
android:name=".ui.email.SignInActivity"
android:label="@string/title_sign_in_activity"
android:exported="false"
android:theme="@style/FirebaseUI"/>
<activity
android:name=".ui.account_link.WelcomeBackIdpPrompt"
android:label="@string/title_welcome_back_idp_prompt"
android:exported="false"
android:theme="@style/FirebaseUI"/>
<activity
android:name=".ui.account_link.WelcomeBackPasswordPrompt"
android:label="@string/title_welcome_back_password_prompt"
android:exported="false"
android:theme="@style/FirebaseUI"/>
<activity
android:name=".ui.idp.AuthMethodPickerActivity"
android:label="@string/default_toolbar_title"
android:exported="false"
android:theme="@style/FirebaseUI"/>
<activity
android:name="com.facebook.FacebookActivity"
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.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/facebook_login_protocol_scheme"/>
</intent-filter>
</activity>
</application>
</manifest>