Ceres Screen¶
Learn more: User Guide and Code Samples
Ceres is a comprehensive Android development framework designed to streamline your app development process. Powered by the latest technologies like Jetpack Compose, Hilt, Coroutines, and Flow, Ceres empowers developers to build modern and efficient Android applications.
API Reference
dev.teogor.ceres:screen-*
dev.teogor.ceres:screen-builder
dev.teogor.ceres:screen-core
dev.teogor.ceres:screen-ui
Latest Update | Stable Release | Release Candidate | Beta Release | Alpha Release |
---|---|---|---|---|
April 15, 2024 | - | - | - | 1.0.0-alpha05 |
Declaring dependencies¶
To use Screen in your app, add the following dependencies to your app's build.gradle
file:
dependencies {
def teogorCeresScreen = "1.0.0-alpha05"
implementation "dev.teogor.ceres:screen-builder:$teogorCeresScreen"
implementation "dev.teogor.ceres:screen-core:$teogorCeresScreen"
implementation "dev.teogor.ceres:screen-ui:$teogorCeresScreen"
}
dependencies {
val teogorCeresScreen = "1.0.0-alpha05"
implementation("dev.teogor.ceres:screen-builder:$teogorCeresScreen")
implementation("dev.teogor.ceres:screen-core:$teogorCeresScreen")
implementation("dev.teogor.ceres:screen-ui:$teogorCeresScreen")
}
For comprehensive instructions on adding these dependencies, refer to the Screen documentation.
Feedback¶
Your feedback helps make Screen better. Let us know if you discover new issues or have ideas for improving this library. Please take a look at the existing issues on GitHub for this library before you create a new one.