forked from firebase/FirebaseUI-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
66 lines (54 loc) · 2.32 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
66 lines (54 loc) · 2.32 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.firebase.uidemo">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:name=".FirebaseUIDemo"
android:label="@string/app_name"
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".ChooserActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
<!-- Auth UI demo -->
<activity
android:name=".auth.AuthUiActivity"
android:label="@string/title_auth_activity" />
<activity
android:name=".auth.SignedInActivity"
android:label="@string/title_auth_activity" />
<!-- Firestore demo -->
<activity
android:name=".database.firestore.FirestoreChatActivity"
android:label="@string/title_firestore_activity" />
<!-- Firestore paging demo -->
<activity
android:name=".database.firestore.FirestorePagingActivity"
android:label="@string/title_firestore_paging_activity" />
<!-- Realtime database demo -->
<activity
android:name=".database.realtime.RealtimeDbChatActivity"
android:label="@string/title_realtime_database_activity" />
<activity
android:name=".database.realtime.RealtimeDbChatIndexActivity"
android:label="@string/title_realtime_database_activity" />
<!-- Storage UI demo -->
<activity
android:name=".storage.ImageActivity"
android:label="@string/title_storage_activity" />
</application>
</manifest>