Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
aritra-tech committed Jun 14, 2024
2 parents 92c9aad + 67ea090 commit c2c3e22
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 2 deletions.
12 changes: 11 additions & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,17 @@ compose.desktop {
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "com.aritra.coinify"
packageVersion = "1.0.0"
packageVersion = properties["version.name"].toString()

macOS {
iconFile.set(rootProject.file("icons/coinify_logo.icns"))
}
windows {
iconFile.set(rootProject.file("icons/coinify_logo.ico"))
}
linux {
iconFile.set(rootProject.file("icons/coinify_logo.png"))
}
}
}
}
Expand Down
Binary file added composeApp/src/androidMain/app_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ android.useAndroidX=true

#MPP
kotlin.mpp.androidSourceSetLayoutVersion=2
kotlin.mpp.enableCInteropCommonization=true
kotlin.mpp.enableCInteropCommonization=true
# App
version.name=1.0.0
Binary file added icons/coinify_logo.icns
Binary file not shown.
Binary file added icons/coinify_logo.ico
Binary file not shown.
Binary file added icons/coinify_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c2c3e22

Please sign in to comment.