# CoreLibrary
**Repository Path**: wangwangheng/CoreLibrary
## Basic Information
- **Project Name**: CoreLibrary
- **Description**: 核心仓库
- **Primary Language**: Android
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2018-01-11
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# CoreLibrary
核心仓库
主要是Library模块,包含各种基类和工具类
## 在使用`library`模块的功能时,有以下注意点:
1.需要对Library进行初始化,示例代码如下:
```
LibraryConfig.getInstance()
.setAppContext(applicationContext)
.setDebug(BuildConfig.DEBUG)
.config()
```
一般上述代码在自定义的Application的onCreate方法中调用
2.Activity的Theme要继承以下的style样式或者继承AppCompat系列的Theme
```
```