commit | e777ba83c95e103a5be4f2b24511ac84deb74159 | [log] [tgz] |
---|---|---|
author | Louis Pullen-Freilich <[email protected]> | Tue Mar 11 15:13:44 2025 +0000 |
committer | Louis Pullen-Freilich <[email protected]> | Tue Mar 11 15:13:44 2025 +0000 |
tree | 34fe118cddc6958ec413a4c336f16cd33332de01 | |
parent | d162df5fa617eeaf4ae232bf81052098fe6decb1 [diff] |
Updates navigation dependency to avoid a lint crash We are enabling the ObsoleteLintCustomCheck lint error in AndroidX - older versions of the navigation dependency have an issue that will result in this error. Update the dependency to use a fixed version that does not have this issue. Test: lint Change-Id: Ib522f6ccc8eb60665d869b5d16eb473de7fde282
[!TIP] If you want to see the XML version of Pokedex, check out the Pokedex repository.
Go to the Releases to download the latest APK.
If you're interested in learning the tech stacks used to build Pokedex Compose, you can find detailed information in the articles linked below:
Pokedex Compose adheres to the MVVM architecture and implements the Repository pattern, aligning with Google's official architecture guidance.
The architecture of Pokedex Compose is structured into two distinct layers: the UI layer and the data layer. Each layer fulfills specific roles and responsibilities, outlined as follows:
Pokedex Compose follows the principles outlined in the Guide to app architecture, making it an exemplary demonstration of architectural concepts in practical application.
This loosely coupled architecture enhances component reusability and app scalability, facilitating seamless development and maintenance.
The UI layer encompasses UI elements responsible for configuring screens for user interaction, alongside the ViewModel, which manages app states and restores data during configuration changes.
The data layer is composed of repositories that handle business logic tasks such as retrieving data from a local database or fetching remote data from a network. This layer is designed to prioritize offline access, functioning primarily as an offline-first repository of business logic. It adheres to the principle of “single source of truth,” ensuring that all data operations are centralized and consistent.
Pokedex Compose is an offline-first app, meaning it can perform all or most of its essential functions without an internet connection. This design allows users to access core features reliably, regardless of network availability, reducing their need for constant updates and decreasing data usage. For more details on how to build an offline-first application, you can visit Build an offline-first app.
Pokedex Compose adopted modularization strategies below:
For more information, check out the Guide to Android app modularization.
Pokedex using the PokeAPI for constructing RESTful API.
PokeAPI provides a RESTful API interface to highly detailed objects built from thousands of lines of data related to Pokémon.
Support it by joining stargazers for this repository. :star:
Also, follow me on GitHub for my next creations! 🤩
Designed and developed by 2024 skydoves (Jaewoong Eum)
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.