A collection of opinionated Android platform libraries providing foundational building blocks for modern Android app development.
Android Platform is a multi-module library that provides a curated set of platform-level abstractions and UI components built on top of Jetpack Compose, Kotlin Coroutines, Koin, and Firebase. It is designed to be consumed as a BOM so all modules stay version-compatible.
- Min SDK: 24 (Android 7.0)
- Target SDK: 35 (Android 15)
- Kotlin: 2.0+
- Java: 17
dependencies {
implementation(platform("com.raxdenstudios:platform-bom:<latest-version>"))
implementation("com.raxdenstudios:platform-core")
implementation("com.raxdenstudios:platform-ui")
implementation("com.raxdenstudios:platform-device")
implementation("com.raxdenstudios:platform-network")
}dependencies {
implementation("com.raxdenstudios:platform-core:<version>")
implementation("com.raxdenstudios:platform-ui:<version>")
implementation("com.raxdenstudios:platform-device:<version>")
implementation("com.raxdenstudios:platform-network:<version>")
}Run unit tests:
./gradlew testGenerate JaCoCo coverage reports:
./gradlew jacocoTestReport| Workflow | Trigger | Description |
|---|---|---|
ci.yml |
Pull Request | Runs checkstyle, build, and unit tests |
ci_publish.yml |
Push to master |
Bumps versions, publishes to Maven Central |
ci_bump.yml |
Manual | Bumps module versions manually |
ci_reports.yml |
Push to master |
Generates and uploads coverage reports to Codecov |
See config/ for the GitHub secrets and variables required to run these workflows.
Copyright 2015 Ángel Gómez
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.