Skip to content

Commit a1b2414

Browse files
committed
Merge branch 'master' into version-1.0.0-dev
2 parents e8baa0e + 13e2f9e commit a1b2414

File tree

6 files changed

+47
-11
lines changed

6 files changed

+47
-11
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#}
1818

1919
# See:
20-
# https://firebase-dot-devsite.googleplex.com/docs/auth/android/start/#proguard
20+
# https://firebase.google.com/docs/auth/android/start/#proguard
2121
-keepattributes Signature
2222
-keepattributes *Annotation*
2323

app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
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 -->
@@ -30,7 +31,11 @@
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>

app/src/main/res/fabric.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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>

common/constants.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
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'
33

44
project.ext.submodules = ['database', 'auth', 'storage']
55
project.ext.group = 'com.firebaseui'
66
project.ext.version = '1.0.0-SNAPSHOT'
77
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

0 commit comments

Comments
 (0)