File tree 6 files changed +47
-11
lines changed
6 files changed +47
-11
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ android:
14
14
components :
15
15
- platform-tools
16
16
- tools
17
- - build-tools-24 .0.3
18
- - android-24
17
+ - build-tools-25 .0.0
18
+ - android-25
19
19
20
20
# Extras
21
21
- extra-google-google_play_services
Original file line number Diff line number Diff line change 17
17
#}
18
18
19
19
# See:
20
- # https://firebase-dot-devsite.googleplex .com/docs/auth/android/start/#proguard
20
+ # https://firebase.google .com/docs/auth/android/start/#proguard
21
21
-keepattributes Signature
22
22
-keepattributes *Annotation*
23
23
Original file line number Diff line number Diff line change 13
13
<activity android : name =" .ChooserActivity" >
14
14
<intent-filter >
15
15
<action android : name =" android.intent.action.MAIN" />
16
-
17
16
<category android : name =" android.intent.category.LAUNCHER" />
18
17
</intent-filter >
18
+ <meta-data android : name =" android.app.shortcuts"
19
+ android : resource =" @xml/shortcuts" />
19
20
</activity >
20
21
21
22
<!-- Chat demo -->
30
31
<activity
31
32
android : name =" .auth.SignedInActivity"
32
33
android : label =" @string/name_auth_ui" />
33
- <activity android : name =" .storage.ImageActivity" ></activity >
34
+
35
+ <!-- Storage UI demo-->
36
+ <activity
37
+ android : name =" .storage.ImageActivity"
38
+ android : label =" @string/name_image" />
34
39
</application >
35
40
36
41
</manifest >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <shortcuts xmlns : android =" http://schemas.android.com/apk/res/android" >
3
+ <shortcut
4
+ android : shortcutId =" storage"
5
+ android : enabled =" true"
6
+ android : icon =" @mipmap/ic_launcher"
7
+ android : shortcutShortLabel =" @string/name_image" >
8
+ <intent
9
+ android : action =" android.intent.action.VIEW"
10
+ android : targetPackage =" com.firebase.uidemo"
11
+ android : targetClass =" com.firebase.uidemo.storage.ImageActivity" />
12
+ </shortcut >
13
+ <shortcut
14
+ android : shortcutId =" auth"
15
+ android : enabled =" true"
16
+ android : icon =" @drawable/firebase_auth_120dp"
17
+ android : shortcutShortLabel =" @string/name_auth_ui" >
18
+ <intent
19
+ android : action =" android.intent.action.VIEW"
20
+ android : targetPackage =" com.firebase.uidemo"
21
+ android : targetClass =" com.firebase.uidemo.auth.AuthUiActivity" />
22
+ </shortcut >
23
+ <shortcut
24
+ android : shortcutId =" database"
25
+ android : enabled =" true"
26
+ android : icon =" @mipmap/ic_launcher"
27
+ android : shortcutShortLabel =" @string/name_chat" >
28
+ <intent
29
+ android : action =" android.intent.action.VIEW"
30
+ android : targetPackage =" com.firebase.uidemo"
31
+ android : targetClass =" com.firebase.uidemo.database.ChatActivity" />
32
+ </shortcut >
33
+ </shortcuts >
Original file line number Diff line number Diff line change 1
1
project. ext. firebase_version = ' 9.6.1'
2
- project. ext. support_library_version = ' 24.2.1 '
2
+ project. ext. support_library_version = ' 25.0.0 '
3
3
4
4
project. ext. submodules = [' database' , ' auth' , ' storage' ]
5
5
project. ext. group = ' com.firebaseui'
6
6
project. ext. version = ' 1.0.0-SNAPSHOT'
7
7
project. ext. pomdesc = ' Firebase UI Android'
8
- project. ext. buildtools = ' 24 .0.3 '
9
- project. ext. compileSdk = 24
10
- project. ext. targetSdk = 24
8
+ project. ext. buildtools = ' 25 .0.0 '
9
+ project. ext. compileSdk = 25
10
+ project. ext. targetSdk = 25
You can’t perform that action at this time.
0 commit comments