Skip to content

Commit

Permalink
Bump android sdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfisher committed Sep 27, 2024
1 parent 9ba20d8 commit d159c73
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ dependencies {

implementation "androidx.browser:browser:1.2.0"

implementation("com.authsignal:authsignal-android:1.0.15")
implementation("com.authsignal:authsignal-android:1.1.0-alpha1")
}

if (isNewArchitectureEnabled()) {
Expand Down
6 changes: 3 additions & 3 deletions android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Authsignal_minSdkVersion=24
Authsignal_targetSdkVersion=33
Authsignal_compileSdkVersion=33
Authsignal_ndkversion=21.4.7075529
Authsignal_targetSdkVersion=34
Authsignal_compileSdkVersion=34
Authsignal_ndkversion=26.1.10909125
android.useAndroidX=true
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void initialize(String tenantID, String baseURL, Promise promise) {
public void signUp(String token, String username, String displayName, Promise promise) {
if (authsignalPasskey != null) {
authsignalPasskey
.signUpAsync(token, username, displayName)
.signUpAsync(token, username, displayName, false)
.thenAcceptAsync(response -> {
if (response.getError() != null) {
String errorCode = response.getErrorType() != null ?
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-authsignal",
"version": "1.0.13",
"version": "1.1.0",
"description": "The official Authsignal React Native library.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit d159c73

Please sign in to comment.