react-native-kochava-measurement
Version:
A lightweight and easy to integrate SDK, providing first-class integration with Kochava’s installation attribution and analytics platform.
7 lines (6 loc) • 314 B
JavaScript
import AsyncStorage from "@amazon-devices/react-native-async-storage__async-storage";
export var rnStorage = {
getItem: function (k) { return AsyncStorage.getItem(k); },
setItem: function (k, v) { return AsyncStorage.setItem(k, v); },
removeItem: function (k) { return AsyncStorage.removeItem(k); }
};