Home

Awesome

<p align="center"> AndroidX-Jetpack-Practice </p>

<p align="center"> 仓库持续更新中,如果对你有帮助,请在右上角 star 一下,感谢!!!</p> <p align="center"> 本仓库致力于建立最全、最新的 <b>AndroidX Jetpack 组件实践项目</b> 以及<b>组件对应的分析文章</b> </p> <p align="center"> <a href="https://github.com/hi-dhl"><img src="https://img.shields.io/badge/GitHub-HiDhl-4BC51D.svg?style=flat"></a> <a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/license-Apache2.0-blue.svg?style=flat"></a> <img src="https://img.shields.io/badge/language-kotlin-orange.svg"/> <img src="https://img.shields.io/badge/platform-android-lightgrey.svg"/> <br/> <img src="https://img.shields.io/badge/Jetpack-AppStartup | Paging3 | Hilt | DataStore -8633FF.svg"/> </p> <!--![](http://cdn.51git.cn/2020-06-19-3551539-2cae0f5a80bce069.png)-->

<p align="center"> 仓库目录结构介绍 </p>

AndroidX-Jetpack-Practice
│
├── Splashscreen                    // 闪屏:启动动画,兼容 Android 5.0(21) ~ Android 12 (31) 所有的 API
│
├── AppStartupSimple                // App Startup 示例应用
│
├── Paging3Simple                   // Paging 3 加载本地数据库的示例应用
│
├── Paging3SimpleWithNetWork        // Paging 3 加载网络数据的示例应用
│
├── HiltSimple                      // Hilt 全部注解的实例应用
│
├── HiltWithAppStartupSimple        // Hilt 结合了 App Startup 和 ViewModel 等等示例应用
│
├── HiltWithMultiModuleSimple       // Hilt 在多模块中的示例应用
│
├── DataStoreSimple                 // DataStoreSimple 的示例应用
│    │
│    ├── main(master) 分支           // Preferences DataStore 的使用
│    ├── datastore_proto 分支        // Proto DataStore 的使用
│
├── VersionPlugin                   // 整个仓库的依赖库的版本管理

关于每个项目的文章分析,以及这些技术在项目中如何使用,在后文会详细的介绍,请往后看,如果有帮助,帮我在右上角 star 一下 就是对我最大的鼓励!

联系我

<img src='http://cdn.51git.cn/2020-10-20-151047.png' width = 350px/>

<p align="center"> 综合实战项目 </p>

最新 Jetpack 实战项目 PokemonGo(神奇宝贝)基于 MVVM 架构和 Repository 设计模式,这是一个小型的 App 项目,涉及到技术:Paging3(network + db),Dagger-Hilt,App Startup,DataBinding,Room,Motionlayout,Kotlin Flow,Coil,JProgressView 等等。

PokemonGo 仓库地址:https://github.com/hi-dhl/PokemonGo

PokemonGo 效果图如下所示,如果图片无法查看,请点击这里查看 动态效果图 | 静态图

<p align="center"> <img src="http://cdn.51git.cn/2020-07-14-PokemonGo2.png"/> </p>

<p align="center"> 仓库项目介绍 </p>

仓库 AndroidX-Jetpack-Practice 致力于建立最全、最新的 AndroidX Jetpack 组件的实战项目 以及 组件对应分析文章,后续会慢慢陆续增加 Jetpack 新成员,仓库持续更新,会持续不断的慢慢的去完善,可以关注了解最新动态。

<p align="center"> Splashscreen </p>

Splashscreen 是基于 Jetpack 成员 Core Splashscreen 在应用中的使用的示例,SplashScreen 用于实现闪屏启动动画,兼容 Android 5.0 (API 21) ~ Android 12 (API 31)所有的 API。项目分析的文章请查看 Jetpack Splashscreen 解析

<p align="center"> DataStoreSimple </p>

DataStoreSimple 是基于 Jetpack 成员 DataStore 在应用使用的示例,DataStore 主要用来替换 SharedPreferences,而 Jetpack DataStore 有两种实现方式:

Proto DataStore 基于 Protobuf 实现的,Protobuf 环境配置点击下方连接前往查看:

<p align="center"> AppStartupSimple </p>

AppStartupSimple 是基于 Jetpack 成员 App Startup 开发的一个示例应用,App Startup 提供了一个 ContentProvider 来运行所有依赖项的初始化,避免每个第三方库单独使用 ContentProvider 进行初始化,从而提高了 App 的启动速度。

关于 AppStartupSimple 分析的文章请看 App Startup 实践以及原理分析

<p align="center"> Paging3Simple </p>

Paging3Simple 是基于 Jetpack 成员 Paging 3 开发的加载本地数据库的示例应用,Paging 3 是一个分页库,它可以帮助您从本地存储或通过网络加载和显示数据。这种方法使你的 App 更有效地使用网络带宽和系统资源,而 Paging3 是使用 Kotlin 协程完全重写的库:

关于 Paging3Simple 加载本地数据分析的文章请看 Jetpack 成员 Paging 3 实践以及原理分析(一)

<!--**Paging3Simple 涉及的技术栈:** * 基于 kotlin 和 协程 * 使用 koin 作为依赖注入库 * JetPack * LiveData * Lifecycle * ViewModel * Room * Paging3 * 架构 * MVVM 架构 * Repository 设计模式 * Data Mapper 数据映射 * 使用 Composing builds 作为依赖库的版本管理 * JDataBinding 是基于 DataBinding 封装的库 -->

<p align="center"> Paging3SimpleWithNetWork </p>

Paging3SimpleWithNetWork 是基于 Jetpack 成员 Paging 3 开发的加载网络数据的示例应用。

关于 Paging3SimpleWithNetWork 加载网络数据分析的文章请看 Jetpack 新成员 Paging3 网络实践及原理分析(二)

<!--**Paging3SimpleWithNetWork 涉及的技术栈:** * 基于 kotlin 和 协程 * 使用 koin 作为依赖注入库 * JetPack * LiveData * Lifecycle * ViewModel * Paging3 * Retrofit 作为网络框架 * 架构 * MVVM 架构 * Repository 设计模式 * Data Mapper 数据映射 * 使用 Composing builds 作为依赖库的版本管理 * JDataBinding 是基于 DataBinding 封装的库-->

<p align="center"> HiltSimple </p>

HiltSimple 是基于 Jetpack 成员 Hilt 开发的示例应用。

关于 HiltSimple 项目分析的文章请查看 Jetpack 新成员 Hilt 实践(一)启程过坑记

<p align="center"> HiltWithAppStartupSimple </p>

HiltWithAppStartupSimple 是基于 Jetpack 成员 Hilt 开发的示例应用,结合了 App StartupViewModel 等等。

HiltWithAppStartupSimple 包含了 Hilt 全部注解的使用案例,也包含了项目 HiltSimple 中用到案例,可以先去了解 HiltSimple 之后在来了解 HiltWithAppStartupSimple 会更加的清楚。

关于 HiltWithAppStartupSimple 项目分析的文章请查看 Jetpack 新成员 Hilt 实践之 App Startup(二)进阶篇

<p align="center"> HiltWithMultiModuleSimple </p>

HiltWithAppStartupSimple 是基于 Jetpack 成员 Hilt 在多模块中应用的示例,项目中使用的注解都是前两篇文章介绍的内容。

关于 HiltWithMultiModuleSimple 项目分析的文章请查看 Jetpack 新成员 Hilt 与 Dagger 大不同(三)落地篇

HiltSimple、HiltWithAppStartupSimple 和 HiltWithMultiModuleSimple 包含了 Hilt 所有注解的含义以及项目示例、以及和 Jetpack 组件的使用,Hilt 与 Dagger 不同之处,以及在多模块中局限性以及使用,在代码中都有详细的注释。

<p align="center"> VersionPlugin </p>

VersionPlugin 是基于 Composing builds 开发的自定义插件,作为整个仓库的依赖库的版本管理,使用 Composing builds 作为依赖库的版本管理,它有以下好处:

关于 VersionPlugin 的分析的文章请看 再见吧 buildSrc, 拥抱 Composing builds 提升 Android 编译速度

这是关于 buildSrc 和 Composing builds 详细使用案例的代码仓库的地址 ComposingBuilds-vs-buildSrc,在代码中都要详细的注释。

其他成员

其他组件成员陆续增加中......敬请期待


最后推荐我一直在更新维护的项目和网站:

License

Copyright 2020 hi-dhl (Jack Deng)

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.