Skip to content

Commit 43912a7

Browse files
committed
Merge branch 'master' into version-4.2.0-dev
Change-Id: I6a0472070838a4cfd3a4f57ed67c7673142d21c8
2 parents 38883b7 + 0d1e22c commit 43912a7

File tree

4 files changed

+17
-19
lines changed

4 files changed

+17
-19
lines changed

.opensource/project.json

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@
88
],
99

1010
"content": "README.md",
11-
12-
// These are relative paths in the same repo,
13-
// each of these paths must have a .opensource/project.json
14-
"subprojects": [],
1511

16-
// Other markdown pages that should be rendered nicely
1712
"pages" : [
1813
"auth/README.md",
1914
"database/README.md",
@@ -24,18 +19,10 @@
2419
"docs/upgrade-to-4.0.md"
2520
],
2621

27-
// Related projects on Github, in the format $owner/$repo[/$subproject]
28-
// where subproject is optional.
2922
"related": [
3023
"firebase/firebaseui-ios",
3124
"firebase/firebaseui-web"
32-
],
33-
34-
"tags": [
35-
"firebase-auth",
36-
"firebase-database",
37-
"firebase-firestore",
38-
"firebase-storage"
3925
]
40-
}
26+
27+
}
4128

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# FirebaseUI for Android — UI Bindings for Firebase
22

3+
[![FirebaseOpensource.com](https://img.shields.io/badge/Docs-firebaseopensource.com-orange.svg)](
4+
https://firebaseopensource.com/projects/firebase/firebaseui-android
5+
)
36
[![Build Status](https://travis-ci.org/firebase/FirebaseUI-Android.svg?branch=master)](https://travis-ci.org/firebase/FirebaseUI-Android)
47

58
FirebaseUI is an open-source library for Android that allows you to
@@ -192,6 +195,14 @@ and Gradle while trying to run the sample app, try disabling the Instant
192195
Run feature of Android Studio. Alternatively, update Android Studio and
193196
Gradle to their latest versions.
194197

198+
A note on importing the project using Android Studio: Using 'Project from
199+
Version Control' will not automatically link the project with Gradle
200+
(issue [#1349](https://github.com/firebase/FirebaseUI-Android/issues/1349)).
201+
When doing so and opening any `build.gradle.kts` file, an error shows up:
202+
`Project 'FirebaseUI-Android' isn't linked with Gradle`. To resolve this
203+
issue, please `git checkout` the project manually and import with `Import
204+
from external model`.
205+
195206
## Snapshot builds
196207

197208
Like to live on the cutting edge? Want to try the next release of FirebaseUI before anyone else? As of version `3.2.2`

auth/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ For example:
672672
startActivityForResult(
673673
AuthUI.getInstance()
674674
.createSignInIntentBuilder()
675-
enableAnonymousUsersAutoUpgrade()
675+
.enableAnonymousUsersAutoUpgrade()
676676
...
677677
.build(),
678678
RC_SIGN_IN);
@@ -717,8 +717,8 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) {
717717
...
718718
// Get the non-anoymous credential from the response
719719
AuthCredential nonAnonymousCredential = response.getCredentialForLinking();
720-
// Sign in with credential
721-
FirebaseAuth.getInstance().signInWithCredential(nonAnonymousCredential);
720+
// Sign in with credential
721+
FirebaseAuth.getInstance().signInWithCredential(nonAnonymousCredential)
722722
.addOnSuccessListener(new OnSuccessListener<AuthResult>() {
723723
@Override
724724
public void onSuccess(AuthResult result) {

auth/src/main/res/values-tr/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<string name="fui_missing_email_address">Devam etmek için e-posta adresinizi girin</string>
2424
<string name="fui_progress_dialog_checking_accounts">Mevcut hesaplar kontrol ediliyor…</string>
2525
<string name="fui_title_register_email">Kaydol</string>
26-
<string name="fui_name_hint">Ad ve Soyadı</string>
26+
<string name="fui_name_hint">Ad ve Soyad</string>
2727
<string name="fui_button_text_save">Kaydet</string>
2828
<string name="fui_progress_dialog_signing_up">Kaydolunuyor…</string>
2929
<plurals name="fui_error_weak_password"> <item quantity="one">Şifre yeterince güçlü değil. En az %1$d karakter kullanın ve hem harf hem de rakam ekleyin</item> <item quantity="other">Şifre yeterince güçlü değil. En az %1$d karakter kullanın ve hem harf hem de rakam ekleyin</item> </plurals>

0 commit comments

Comments
 (0)