Skip to content

Commit

Permalink
Fix "signInWithEmail" typo on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Apr 13, 2018
1 parent b4451f4 commit dafa03f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 1.0.0
version: 1.0.1
apiversion: 4
architectures: arm64-v8a armeabi-v7a x86
description: titanium-firebase-auth
Expand Down
2 changes: 1 addition & 1 deletion android/src/firebase/auth/TitaniumFirebaseAuthModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void onComplete(Task<AuthResult> task)
}

@Kroll.method
public void signInUserWithEmail(KrollDict params)
public void signInWithEmail(KrollDict params)
{
String email = (String) params.get("email");
String password = (String) params.get("password");
Expand Down

0 comments on commit dafa03f

Please sign in to comment.