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
- Host: GitHub
- URL: https://github.com/m1ga/ti.mmkv
- Owner: m1ga
- License: other
- Created: 2023-07-19T18:49:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T20:28:55.000Z (almost 2 years ago)
- Last Synced: 2025-01-27T07:12:04.054Z (4 months ago)
- Topics: android, titanium-module, titanium-sdk
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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