All Projects → liangjingkanji → Serialize

liangjingkanji / Serialize

Licence: Apache-2.0 license
🍒 Android 简单高性能读写本地数据, 直接存储对象/基础类型

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Serialize

Movieapp
🎬 MovieApp is a Flutter application built to demonstrate the use of modern development tools with best practices implementation like Modularization, BLoC, Dependency Injection, Dynamic Theme, Cache, Shimmer, Testing, Flavor, CI/CD, etc.
Stars: ✭ 117 (-35.36%)
Mutual labels:  sharedpreferences
Kau
An extensive collection of Kotlin Android Utils
Stars: ✭ 182 (+0.55%)
Mutual labels:  sharedpreferences
Redux Persist Sensitive Storage
redux-persist storage engine for react-native-sensitive-info
Stars: ✭ 209 (+15.47%)
Mutual labels:  sharedpreferences
Prefs
Simple Android SharedPreferences wrapper.
Stars: ✭ 125 (-30.94%)
Mutual labels:  sharedpreferences
React Native Default Preference
Use SharedPreference (Android) and UserDefaults (iOS) with React Native over a unified interface
Stars: ✭ 170 (-6.08%)
Mutual labels:  sharedpreferences
Android Prefs
Android preferences for WINNERS!
Stars: ✭ 183 (+1.1%)
Mutual labels:  sharedpreferences
Kripton
A Java/Kotlin library for Android platform, to manage bean's persistence in SQLite, SharedPreferences, JSON, XML, Properties, Yaml, CBOR.
Stars: ✭ 110 (-39.23%)
Mutual labels:  sharedpreferences
Aptpreferences
基于apt实现的Android快速持久化框架:AptPreferences
Stars: ✭ 227 (+25.41%)
Mutual labels:  sharedpreferences
Ksprefs
🚀⚡ Kotlin SharedPreferences wrapper & cryptographic preferences android library.
Stars: ✭ 176 (-2.76%)
Mutual labels:  sharedpreferences
Tray
a SharedPreferences replacement for Android with multiprocess support
Stars: ✭ 2,314 (+1178.45%)
Mutual labels:  sharedpreferences
Appdatareader
A library for reading Shared Preferences and Database values within the application.
Stars: ✭ 126 (-30.39%)
Mutual labels:  sharedpreferences
Bulldog
Android library to simplify reading and writing to SharedPreferences, never write code like this anymore prefs.edit().putString("someKey","someString").apply()
Stars: ✭ 133 (-26.52%)
Mutual labels:  sharedpreferences
Frideos flutter
An all-in-one Fllutter package for state management, reactive objects, animations, effects, timed widgets etc.
Stars: ✭ 187 (+3.31%)
Mutual labels:  sharedpreferences
Secure Preferences
Android Shared preference wrapper than encrypts the values of Shared Preferences. It's not bullet proof security but rather a quick win for incrementally making your android app more secure.
Stars: ✭ 1,527 (+743.65%)
Mutual labels:  sharedpreferences
Krate
A SharedPreferences wrapper powered by Kotlin delegates
Stars: ✭ 213 (+17.68%)
Mutual labels:  sharedpreferences
React Native Encrypted Storage
React Native wrapper around SharedPreferences and Keychain to provide a secure alternative to Async Storage
Stars: ✭ 110 (-39.23%)
Mutual labels:  sharedpreferences
Oksharedprefs
通过注解生成SharedPreferences包装类,解决跨进程数据访问不同步的问题。
Stars: ✭ 183 (+1.1%)
Mutual labels:  sharedpreferences
Prefser
Wrapper for Android SharedPreferences with object serialization and RxJava Observables
Stars: ✭ 228 (+25.97%)
Mutual labels:  sharedpreferences
Armadillo
A shared preference implementation for confidential data in Android. Per default uses AES-GCM, BCrypt and HKDF as cryptographic primitives. Uses the concept of device fingerprinting combined with optional user provided passwords and strong password hashes.
Stars: ✭ 226 (+24.86%)
Mutual labels:  sharedpreferences
Typedpreferences
Preference wrappers for primitive types for Android
Stars: ✭ 191 (+5.52%)
Mutual labels:  sharedpreferences

标准序列化工具

使用文档 | 无法访问?

简化项目中的序列化

  • 创建自动存储本地的字段(内部使用MMKV)
  • 创建自动存储本地的LiveData可观察字段
  • 存储读写对象
  • 创新式使用双通道读写磁盘, 耗时大幅度低于SQLite/sp/mmkv, 完美解决ANR
  • 快捷跳转Activity/Fragment和参数传递
  • 创建自动注入Activity/Fragment参数的字段(支持可空类型)

安装

添加远程仓库根据创建项目的 Android Studio 版本有所不同

Android Studio Arctic Fox以下创建的项目 在项目根目录的 build.gradle 添加仓库

allprojects {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

Android Studio Arctic Fox以上创建的项目 在项目根目录的 settings.gradle 添加仓库

dependencyResolutionManagement {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

然后在 module 的 build.gradle 添加依赖框架

implementation 'com.github.liangjingkanji:Serialize:3.0.1'

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].