https://github.com/AniTrend/support-arch
A multi-module template library that attempts to make clean arch apps easier to build
https://github.com/AniTrend/support-arch
android anitrend architecture clean-architecture
Last synced: 3 months ago
JSON representation
A multi-module template library that attempts to make clean arch apps easier to build
- Host: GitHub
- URL: https://github.com/AniTrend/support-arch
- Owner: AniTrend
- License: apache-2.0
- Created: 2018-10-29T16:19:45.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2024-09-15T08:30:21.000Z (10 months ago)
- Last Synced: 2024-09-15T11:09:41.123Z (10 months ago)
- Topics: android, anitrend, architecture, clean-architecture
- Language: Kotlin
- Homepage: https://anitrend.github.io/support-arch/
- Size: 12.3 MB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-list - AniTrend/support-arch - A multi-module template library that attempts to make clean arch apps easier to build (Kotlin)
README
# Support Arch Library
[](https://github.com/AniTrend/support-arch/actions/workflows/android-test.yml) [](https://github.com/AniTrend/support-arch/actions/workflows/android-spotless.yml) [](https://github.com/AniTrend/support-arch/actions/workflows/gradle-dokka.yml) [](https://www.codacy.com/gh/AniTrend/support-arch/dashboard?utm_source=github.com&utm_medium=referral&utm_content=AniTrend/support-arch&utm_campaign=Badge_Grade)
[](https://jitpack.io/#anitrend/support-arch) [](https://app.fossa.com/projects/git%2Bgithub.com%2FAniTrend%2Fsupport-arch?ref=badge_small)This project is an attempt to create a reusable mobile architecture that follows some of the aspects of [Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html), [Guide to App Architecture](https://developer.android.com/jetpack/docs/guide) and is mostly written in Kotlin and makes use of [Android Architecture Components](https://developer.android.com/topic/libraries/architecture/) bundled with a couple of libraries.
## Documentation for Modules
All code documentation is generated by [dokka](https://github.com/Kotlin/dokka) at build time and published on [github pages](https://anitrend.github.io/support-arch/).
- [ui](https://anitrend.github.io/support-arch/ui/index.html)
- [theme](https://anitrend.github.io/support-arch/theme/index.html)
- [recycler](https://anitrend.github.io/support-arch/recycler/index.html)
- [extension](https://anitrend.github.io/support-arch/extension/index.html)
- [domain](https://anitrend.github.io/support-arch/domain/index.html)
- [data](https://anitrend.github.io/support-arch/data/index.html)
- [core](https://anitrend.github.io/support-arch/core/index.html)
- [analytics](https://anitrend.github.io/support-arch/analytics/index.html)
- [request](https://anitrend.github.io/support-arch/request/index.html)
- [paging-legacy](https://anitrend.github.io/support-arch/paging-legacy/index.html)
- [recycler-paging-legacy](https://anitrend.github.io/support-arch/recycler-paging-legacy/index.html)## Libraries
### Core
- [Android KTX](https://developer.android.com/kotlin/ktx.html/)
- [View Binding](https://developer.android.com/topic/libraries/view-binding/)
- [Coroutines](https://kotlinlang.org/docs/reference/coroutines-overview.html/)
- [Kotlin](https://kotlinlang.org/)
- [Material Components](https://material.io/develop/android/docs/getting-started/)
- [Live Data](https://developer.android.com/topic/libraries/architecture/livedata/)
- [Lifecycle](https://developer.android.com/topic/libraries/architecture/lifecycle/)
- [Room](https://developer.android.com/topic/libraries/architecture/room)
- [Paging](https://developer.android.com/topic/libraries/architecture/paging/)
- [Worker Manager](https://developer.android.com/topic/libraries/architecture/workmanager/)### Testing
- [Mockk](https://mockk.io/)
- [Junit](https://developer.android.com/training/testing/junit-rules/)
- [Runner](https://developer.android.com/training/testing/junit-runner.html/)### Logging
- [Timber](https://github.com/JakeWharton/timber/)
- [OkHttp](https://square.github.io/okhttp/)## License
```
Copyright 2018 AniTrendLicensed 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 athttp://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.
```