We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 055b574 commit ccda193Copy full SHA for ccda193
1 file changed
desktopApp/build.gradle.kts
@@ -42,7 +42,10 @@ compose.desktop {
42
mainClass = "me.rosuh.easywatermark.desktop.MainKt"
43
nativeDistributions {
44
packageName = "EasyWatermark"
45
- packageVersion = "1.0.0"
+ // 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"
49
}
50
51
0 commit comments