Skip to content

Commit a10a2b7

Browse files
Fix merge conflicts
2 parents de2018f + 8ba5408 commit a10a2b7

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -319,14 +319,15 @@ In order to ensure the browser implementation works, it will be necessary to con
319319
```
320320

321321
# History
322-
## 1.0.1
322+
## 1.0.2
323323
- Update Firebase dependencies
324324
- Fix podspec for cordova-ios 5
325-
326-
## 1.0.0
327325
- Major Android dependency update to 4.2.1
328326
- Breaking change around meaning of 'anonymous' configuration option
329-
- Add support for ANONYMOUS provider
327+
- Add support for ANONYMOUS provider (on Android)
328+
- Attempted to handle merging of anonymous users
329+
- Allowed iOS pods to use latest
330+
- Android logo disabled due to possible bug in FirebaseUI
330331

331332
## 0.0.10
332333
- Update JS Firebase dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-firebaseui-auth",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Adds support for Firebase UI authentication.",
55
"repository": {
66
"type": "git",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-firebaseui-auth" version="1.0.1">
2+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-firebaseui-auth" version="1.0.2">
33
<name>Firebase UI Authentication</name>
44
<description>Adds support for Firebase Authentication to your Cordova/PhoneGap apps.</description>
55
<license>Apache 2.0</license>

src/android/uk/co/reallysmall/cordova/plugin/firebase/ui/auth/FirebaseUIAuthPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private AuthUI.SignInIntentBuilder buildCustomInstance() {
241241
try {
242242
if (options.has("logo")) {
243243
int id = getIdentifier(options.getString("logo"), "drawable");
244-
// instance = instance.setLogo(id);
244+
// instance = instance.setLogo(id);
245245
}
246246
if (options.has("theme")) {
247247
int id = getIdentifier(options.getString("theme"), "style");

0 commit comments

Comments
 (0)