File tree Expand file tree Collapse file tree 5 files changed +46
-10
lines changed Expand file tree Collapse file tree 5 files changed +46
-10
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ android:
1414 components :
1515 - platform-tools
1616 - tools
17- - build-tools-24 .0.3
18- - android-24
17+ - build-tools-25 .0.0
18+ - android-25
1919
2020 # Extras
2121 - extra-google-google_play_services
Original file line number Diff line number Diff line change 1313 <activity android : name =" .ChooserActivity" >
1414 <intent-filter >
1515 <action android : name =" android.intent.action.MAIN" />
16-
1716 <category android : name =" android.intent.category.LAUNCHER" />
1817 </intent-filter >
18+ <meta-data android : name =" android.app.shortcuts"
19+ android : resource =" @xml/shortcuts" />
1920 </activity >
2021
2122 <!-- Chat demo -->
3031 <activity
3132 android : name =" .auth.SignedInActivity"
3233 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" />
3439 </application >
3540
3641</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 11project. ext. firebase_version = ' 9.6.1'
2- project. ext. support_library_version = ' 24.2.1 '
2+ project. ext. support_library_version = ' 25.0.0 '
33
44project. ext. submodules = [' database' , ' auth' , ' storage' ]
55project. ext. group = ' com.firebaseui'
66project. ext. version = ' 0.6.1'
77project. 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