Closed fouadkada closed 7 years ago
Sorry for the delay, the issue you're experiencing is a known bug. Please use the newer version (1.0.2).
Yaniv.
@yanivgal The error above seems to be fixed with version 1.0.2. However there seems to be a new problem now.
when you persist a String using Slink, like the following:
securePreferences
.edit()
.putString("VERIFICATION_CODE", verificationCode)
.commit();
on app restart the previously persisted key is not available; for example the following returns null
String verificationCode = securePreferences
.getString("VERIFICATION_CODE", null);
if (verificationCode != null && !verificationCode.isEmpty()) {
return verificationCode;
}
return null;
Yeah, sorry about that. Please check v1.0.3.
works as expected. Thanks
Hey,
I am using Slink to persist some sensitive data to sharedpreferences. im persisting the json text from the Gson library. when i fetch the persisted json i get an error.
below is how i am persisting the data
below is how i am reading the data
and below is the stacktrace i get when i read from shared preferences:
any idea how to fix this?