Skip to content

Commit ccda193

Browse files
committed
desktop: use app version for package
1 parent 055b574 commit ccda193

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

desktopApp/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ compose.desktop {
4242
mainClass = "me.rosuh.easywatermark.desktop.MainKt"
4343
nativeDistributions {
4444
packageName = "EasyWatermark"
45-
packageVersion = "1.0.0"
45+
// S4d-174: mirror the Android app's real versionName (app/build.gradle.kts -> versionName = "2.10.0"),
46+
// not a standalone Desktop version. Single-source via a shared buildSrc version constant referenced by
47+
// both `:app` and `:desktopApp` is the next slice (needs app + buildSrc edits, out of this one-file scope).
48+
packageVersion = "2.10.0"
4649
}
4750
}
4851
}

0 commit comments

Comments
 (0)