Skip to content
Snippets Groups Projects
Verified Commit 42a94cc3 authored by Sebastian's avatar Sebastian
Browse files

Configure version without buildType for MacOS

parent 1ea12e38
No related branches found
No related tags found
1 merge request!332MacOS
......@@ -81,7 +81,7 @@ sourceSets {
val versionCode = "0.4.2"
val buildType = if (project.hasProperty("buildType")) project.properties["buildType"] else "snapshot"
group = "app.briar.desktop"
version = "$versionCode"
version = "$versionCode-$buildType"
val appVendor = "The Briar Project"
val appName = "Briar"
val appDescription = "Secure messaging, anywhere"
......@@ -287,6 +287,8 @@ pinpit.desktop {
}
macOS {
packageName = appName
// MacOS doesn't support things like 'nightly' or 'release'. Only numeric versions are acceptable
packageVersion = versionCode
iconFile.set(project.file("../assets/briar.icns"))
appCategory = "public.app-category.social-networking"
bundleID = "org.briarproject.briar.desktop"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment