# Serialize
**Repository Path**: lomasky/Serialize
## Basic Information
- **Project Name**: Serialize
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-09-10
- **Last Updated**: 2021-09-10
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

标准序列化工具
使用文档 | 备用访问

简化项目中的序列化
- 创建自动映射到本地磁盘的字段(内部使用[MMKV](https://github.com/Tencent/MMKV))
- 快速打开Activity
- 创建自动注入Activity/Fragment参数的字段
- 创建意外销毁自动保存/恢复的字段(ViewModel)
- 快捷打开意图
## 安装
添加远程仓库根据创建项目的 Android Studio 版本有所不同
Android Studio Arctic Fox以下创建的项目 在项目根目录的 build.gradle 添加仓库
```groovy
allprojects {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
```
Android Studio Arctic Fox以上创建的项目 在项目根目录的 settings.gradle 添加仓库
```kotlin
dependencyResolutionManagement {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
```
然后在 module 的 build.gradle 添加依赖框架
```groovy
implementation 'com.github.liangjingkanji:Serialize:1.2.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.
```