Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Allow anonymous login #25

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ packages
pubspec.lock

example/ios/Flutter/flutter_export_environment.sh
example/.flutter-plugins-dependencies
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.0.10] - 31/12/2019
* allow guest login

## [1.0.9] - 30/12/2019
* update dependencies

## [1.0.8] - 02/10/2019
* update dependencies

Expand Down Expand Up @@ -44,10 +50,10 @@
* improve UI

## [0.0.7] - 04/07/2018
* fixe sign in with mail
* fixe sign in with mail

## [0.0.6] - 30/05/2018
* improve show dialog error
* improve show dialog error

## [0.0.5] - 29/05/2018
* show error occured on unknown errors
Expand All @@ -64,9 +70,8 @@
## [0.0.2] - 20/03/2018

* improve ui
* change firebase_auth version
* change firebase_auth version

## [0.0.1] - 19/03/2018

* initial release

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

Fork of https://pub.dartlang.org/packages/flutter_firebase_ui

Old package wasnt being maintained so i created this one to update.
Old package wasn't being maintained so I created this one to update.

firebase_ui is a library that helps you to quickly implement firebase authentication.
It provides UI for the common identity providers like Facebook, Google, Twitter and email.
It provides UI for the common identity providers like Facebook, Google, Twitter and email.

Note: this plugin use firebase_auth you must configure it as describe [here](https://pub.dartlang.org/packages/firebase_auth).

Expand Down
7 changes: 3 additions & 4 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.google.gms:google-services:3.2.1' // google-services plugin
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.google.gms:google-services:4.3.3' // google-services plugin
}
}

Expand All @@ -21,10 +21,9 @@ allprojects {
}

rootProject.buildDir = '../build'

subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}

Expand Down
1 change: 1 addition & 0 deletions example/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
android.enableJetifier=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
2 changes: 1 addition & 1 deletion example/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
121 changes: 0 additions & 121 deletions example/flutter_01.log

This file was deleted.

121 changes: 0 additions & 121 deletions example/flutter_02.log

This file was deleted.

Loading