Skip to content

Commit 92dc38a

Browse files
committed
build: update project configuration and documentation
- Add comment clarifying version code usage for mobile platforms - Clean up formatting and comments in root build script - Remove redundant emojis and instructional text from plugin declarations
1 parent 3be722a commit 92dc38a

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
plugins {
2-
// 🚫 Apply plugins without configuring them (they will be configured in subprojects)
3-
4-
// 🔧 Kotlin plugins - For multiplatform and serialization
2+
// Kotlin plugins - For multiplatform and serialization
53
alias(libs.plugins.kotlinMultiplatform) apply false // Kotlin Multiplatform plugin
64
alias(libs.plugins.kotlinSerialization) apply false // Kotlinx Serialization plugin
75

8-
// 🎨 Compose plugins - For UI framework
6+
// Compose plugins - For UI framework
97
alias(libs.plugins.composeMultiplatform) apply false // Compose Multiplatform plugin
108
alias(libs.plugins.composeCompiler) apply false // Compose Compiler plugin
119
alias(libs.plugins.composeHotReload) apply false // Hot reload for development

versioning.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ fun getCurrentTimestamp(): String {
1414
return sdf.format(Date())
1515
}
1616

17+
// this is for android app. desktop app not need
1718
fun appVersionCode(): Int {
1819
val ciBuildNumber = System.getenv("GITHUB_RUN_NUMBER")
1920
return if (ciBuildNumber != null) {

0 commit comments

Comments
 (0)