You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
Right now, when creating an identity, if the storePath parameter doesn't exist, the method is returning an error. I suggest that the method makes the call to create the storePath directories needed in this case and that the identity is able to be created
Right now, when creating an identity, if the storePath parameter doesn't exist, the method is returning an error. I suggest that the method makes the call to create the storePath directories needed in this case and that the identity is able to be created
val file = File("$storePath/alias")
if (file.exists()) {
file.deleteRecursively()
}
Iden3mobile.newIdentity(
"$storePath/alias",
"password",
web3Url,
1000,
null
) { event -> print(event) }
Result -> Error "no such file or directory"
Expected -> Directories are created if needed and Identity is created and returned as result
The text was updated successfully, but these errors were encountered: