
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
react-native-get-shared-prefs
Advanced tools
This module was produced by ClassApp Team and will be improved in future updates. `react-native-get-shared-prefs` gets all information stored in Android shared preferences.
This module was produced by ClassApp Team and will be improved in future updates. react-native-get-shared-prefs
gets all information stored in Android shared preferences.
Install react-native-get-shared-prefs
using:
npm i -S react-native-get-shared-prefs
After that, you should link react-native-get-shared-prefs
in your project, to do so:
rnpm link react-native-get-shared-prefs
or
Go to settings.gradle
inside your android project folder and paste this lines there:
include ':react-native-get-shared-prefs'
project(':react-native-get-shared-prefs').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-get-shared-prefs/android')
and paste it into build.gradle
:
compile project(':react-native-get-shared-prefs')
In your MainActivity.java
add:
import br.com.classapp.RNGetSharedPrefs.RNGetSharedPrefsPackage; //<- You must import this
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNGetSharedPrefsPackage(), // <- Add this line
);
}
Sync gradle and go :)
Here is a simple example:
import SharedPrefs from 'react-native-get-shared-prefs';
SharedPrefs.getSharedPrefs(function(result){
//result = { 'key1':'value1', 'key2': 'value2', 'key3': 'value3'}
console.log(result); //It will display your data from Shared Preferences
});
Here is an output example:
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.