
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
react-native-default-preference
Advanced tools
Use SharedPreference (Android) and UserDefaults (iOS) with React Native over a unified interface
Use SharedPreferences
(Android) and UserDefaults
(iOS) with React Native over a unified interface.
All data is stored as a string. If you need to support more complex data structures, use serialization/deserialization (e.g. JSON).
$ npm install react-native-default-preference --save
$ cd ios && pod install
$ react-native link react-native-default-preference
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-default-preference
and add RNDefaultPreference.xcodeproj
libRNDefaultPreference.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)<android/app/src/main/java/[...]/MainApplication.java
import com.kevinresol.react_native_default_preference.RNDefaultPreferencePackage;
to the imports at the top of the filenew RNDefaultPreferencePackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-default-preference'
project(':react-native-default-preference').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-default-preference/android')
android/app/build.gradle
:
compile project(':react-native-default-preference')
import DefaultPreference from 'react-native-default-preference';
DefaultPreference.get('my key').then(function(value) {console.log(value)});
DefaultPreference.set('my key', 'my value').then(function() {console.log('done')});
function get(key: string): Promise<string | undefined | null>;
function set(key: string, value: string): Promise<void>;
function clear(key: string): Promise<void>;
function getMultiple(keys: string[]): Promise<string[]>;
function setMultiple(data: {[key: string]: string}): Promise<void>;
function clearMultiple(keys: string[]): Promise<void>;
function getAll(): Promise<{[key: string]: string}>;
function clearAll(): Promise<void>;
/** Gets and sets the current preferences file name (android) or user default suite name (ios) **/
function getName(): Promise<string>;
function setName(name: string): Promise<void>;
This module is compatible with cordova-plugin-native-storage.
You need to use the same SharedPreference as in the cordova plugin, to do so add the following line:
import { Platform } from 'react-native';
// ...
if (Platform.OS === 'android') DefaultPreference.setName('NativeStorage');
You don't need to change the name, as cordova-plugin-native-storage uses the default value.
FAQs
Use SharedPreference (Android) and UserDefaults (iOS) with React Native over a unified interface
The npm package react-native-default-preference receives a total of 29,470 weekly downloads. As such, react-native-default-preference popularity was classified as popular.
We found that react-native-default-preference demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.