Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## Project Overview

**Kombu** is a modern, cross-platform analytics dashboard built with Kotlin Multiplatform (KMP), designed to provide an alternative frontend interface for Umami Analytics. The application showcases privacy-friendly analytics across multiple platforms while demonstrating best practices in cross-platform development.
**Kombu-App** is a modern, cross-platform analytics dashboard built with Kotlin Multiplatform (KMP), designed to provide an alternative frontend interface for Umami Analytics. The application showcases privacy-friendly analytics across multiple platforms while demonstrating best practices in cross-platform development.

- **Developer**: [AppOutlet](https://appoutlet.dev)
- **Status**: Early development stage (work in progress)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ android {
}

dependencies {
implementation(project(":kombu-shared"))
implementation(project(":kombu"))
implementation(libs.activity.compose)
}
2 changes: 1 addition & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

dependencies {
implementation(project(":kombu-shared"))
implementation(project(":kombu"))
implementation(compose.desktop.currentOs)
}

Expand Down
4 changes: 2 additions & 2 deletions kombu-shared/build.gradle.kts → kombu/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kotlin {
iosSimulatorArm64()
).forEach { iosTarget ->
iosTarget.binaries.framework {
baseName = "KombuShared"
baseName = "Kombu"
isStatic = true
}
}
Expand Down Expand Up @@ -52,7 +52,7 @@ kotlin {
}

android {
namespace = "dev.appoutlet.kombu.shared"
namespace = "dev.appoutlet.kombu"
compileSdk = libs.versions.android.compileSdk.get().toInt()

packaging {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = "Kombu"
rootProject.name = "Kombu-App"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

pluginManagement {
Expand All @@ -24,4 +24,4 @@ plugins {

include(":android")
include(":desktop")
include(":kombu-shared")
include(":kombu")