File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/web3auth/core Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ dependencies {
6868 implementation ' org.web3j:core:4.8.8-android'
6969
7070 // session-manager-sdk
71- implementation ' com.github.Web3Auth:session-manager-android:1.0.3 '
71+ implementation ' com.github.Web3Auth:session-manager-android:1.2.0 '
7272
7373 // Test
7474 testImplementation ' junit:junit:4.+'
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions) {
272272 private fun getLoginId (jsonObject : JSONObject ): CompletableFuture <String > {
273273 val createSessionCompletableFuture: CompletableFuture <String > = CompletableFuture ()
274274 val sessionResponse: CompletableFuture <String > =
275- sessionManager.createSession(jsonObject.toString(), 600 )
275+ sessionManager.createSession(jsonObject.toString(), 600 , false )
276276 sessionResponse.whenComplete { response, error ->
277277 if (error == null ) {
278278 createSessionCompletableFuture.complete(response)
You can’t perform that action at this time.
0 commit comments