Skip to content

Commit 2d92432

Browse files
authored
Fix signup method name (#1017)
1 parent e59b518 commit 2d92432

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
buildscript {
2-
ext.kotlin_version = "1.3.61"
2+
ext.kotlin_version = "1.3.72"
33
repositories {
44
google()
55
jcenter()
66
}
77
dependencies {
8-
classpath "com.android.tools.build:gradle:3.6.0"
8+
classpath "com.android.tools.build:gradle:3.6.2"
99
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3"
1010
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

coroutines/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
}
3030

3131
ext {
32-
coroutinesVersion = "1.2.2"
32+
coroutinesVersion = "1.3.3"
3333
}
3434

3535
dependencies {

coroutines/src/main/java/com/parse/coroutines/user/ParseUserCoroutinesExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import kotlin.coroutines.resume
77
import kotlin.coroutines.resumeWithException
88
import kotlin.coroutines.suspendCoroutine
99

10-
suspend fun ParseUser.singUp(): ParseUser {
10+
suspend fun ParseUser.signUp(): ParseUser {
1111
return suspendCoroutine { continuation ->
1212
signUpInBackground { e ->
1313
if (e == null) continuation.resume(this)
@@ -23,4 +23,4 @@ suspend fun parseLogIn(username: String, password: String): ParseUser {
2323
else continuation.resumeWithException(e)
2424
}
2525
}
26-
}
26+
}

facebook/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020
}
2121

2222
dependencies {
23-
api "com.facebook.android:facebook-login:6.1.0"
23+
api "com.facebook.android:facebook-login:6.3.0"
2424
implementation project(":parse")
2525

2626
testImplementation "junit:junit:4.13"

fcm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ android {
2828
}
2929

3030
dependencies {
31-
api "com.google.firebase:firebase-messaging:20.1.0"
31+
api "com.google.firebase:firebase-messaging:20.1.5"
3232
implementation project(":parse")
3333
}
3434

google/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ android {
2222

2323
dependencies {
2424
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
25-
api "com.google.android.gms:play-services-auth:17.0.0"
25+
api "com.google.android.gms:play-services-auth:18.0.0"
2626
implementation project(":parse")
2727
}
2828

parse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929

3030
ext {
3131
// Note: Don't update past 3.12.x, as it sets the minSdk to Android 5.0
32-
okhttpVersion = "3.12.9"
32+
okhttpVersion = "3.12.10"
3333
}
3434

3535
dependencies {

0 commit comments

Comments
 (0)