We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Cannot be stored in Keychain really as it's difficult to reach the keychain in native code before this gets merged: oblador/react-native-keychain#220
Also this is scary: oblador/react-native-keychain#152
Sorry, something went wrong.
Can be moved to keychain later on.
How to reach AsyncStorage items from Java:
import com.facebook.react.modules.storage.ReactDatabaseSupplier; import android.database.sqlite.SQLiteDatabase; import com.facebook.react.modules.storage.AsyncLocalStorageUtil; [...] SQLiteDatabase readableDatabase = ReactDatabaseSupplier.getInstance(getReactApplicationContext()).getReadableDatabase(); if (readableDatabase != null) { String impl = AsyncLocalStorageUtil.getItemImpl(readableDatabase, "bitcoinUnit"); Log.d(TAG, "impl: " + impl); } else { Log.e(TAG, "ReadableDatabase NULL"); }
Implemented in dc7f360
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: