QMUI + Jetpack 组件封装的一个MVVM框架
1、配置jitpack到项目的build.gradle文件中
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
2、添加依赖
dependencies {
// 二选一
// 1.core 包含了base + common
implementation "com.github.Theoneee.QMUI-MVVM:core:1.0.5"
// 2.单独使用
// 只使用 base
implementation "com.github.Theoneee.QMUI-MVVM:base:1.0.5"
// 或者 common
implementation "com.github.Theoneee.QMUI-MVVM:common:1.0.5"
}
以core
为基础,创建的一个 玩Android App。