An open API service indexing awesome lists of open source software.

https://github.com/m1ga/ti.mmkv

mmkv Titanium SDK module: An efficient, small mobile key-value storage framework
https://github.com/m1ga/ti.mmkv

android titanium-module titanium-sdk

Last synced: about 2 months ago
JSON representation

mmkv Titanium SDK module: An efficient, small mobile key-value storage framework

Awesome Lists containing this project

README

        

# MMKV module for Titanium SDK

> MMKV is an efficient, small, easy-to-use mobile key-value storage framework used in the WeChat application.
https://github.com/Tencent/MMKV

## Android

#### Setup

* create();

#### Write values:
* setBool(name, value)
* setString(name, value)
* setInt(name, value)

#### Read values:
* getBool(name, default value)
* getString(name, default value)
* getInt(name, default value)

## Example

see `examples/app.js` for a full example