Files
AndroidJetpack/spaceApps-android/docs
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00
..
a
2026-07-03 15:12:48 +08:00
a
2026-07-03 15:12:48 +08:00
a
2026-07-03 15:12:48 +08:00
a
2026-07-03 15:12:48 +08:00

spaceApps

Description

This is sandbox Android project to try different things

Project structure

flowchart TB
    Core[:core]
    App[:app]
    Wear[:wear]
    subgraph  
    App
    Wear
    end
    App ==> Core
    Wear ==> Core
    subgraph  
    Core
    end

CI\CD workflow

On PR to master branch
flowchart LR
ktlint[Ktlint code check]
lint[Lint code check]
detekt[Detekt code check]
unit[Unit tests]
inst[Instrumentation tests]
ktlint & lint & detekt ==> unit ==> inst
On push to master branch
flowchart LR
build[Build signed AAB]
deploy[Deploy to Google Play]
dokka[Dokka]
kover[Kover]
build ==> deploy ==> dokka & kover