Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4d7236a
change product bundle identifier (com.komodo.wallet)
DeckerSU Oct 14, 2025
1e096b5
Set sdk submodule to chore/sdk-universal-macos-cdn-pods
DeckerSU Oct 14, 2025
c24ec6b
XCode: add production scheme and corresponding configurations
DeckerSU Oct 14, 2025
6213dc4
make Release-production sign with Developer ID Application
DeckerSU Oct 14, 2025
3df4598
Merge branch 'dev' into patch-macos-release-profile
CharlVS Oct 15, 2025
d6434cd
sdk: temp following submodules for patch-macos-release-profile
DeckerSU Oct 15, 2025
50bdf5a
sdk: update submodules
DeckerSU Oct 15, 2025
4f27fe9
add OTHER_CODE_SIGN_FLAGS --options=runtime --timestamp
DeckerSU Oct 15, 2025
80a20a7
fix developement team for Release-production
DeckerSU Oct 15, 2025
f8dc4ee
fix codesigning for Pods (now CP-User signing in Pods receive correct…
DeckerSU Oct 15, 2025
b020e54
add --options=runtime --timestamp for codesigning pods
DeckerSU Oct 15, 2025
8b1a064
sdk: pin version with code_sign_if_enabled in cp-user sh script
DeckerSU Oct 15, 2025
5b55ef1
sdk: bump to new location of KDF binary under MacOS
DeckerSU Oct 15, 2025
83d6162
macos: XCode project update / Pods_Runner.framework in Frameworks
DeckerSU Oct 16, 2025
fa37032
build(macos): set CODE_SIGN_INJECT_BASE_ENTITLEMENTS to NO for Release
DeckerSU Oct 16, 2025
dc49f5d
update .gitignore to exclude dist/ directory
DeckerSU Oct 16, 2025
1a97d7d
feat: add make-dmg.sh script for building DMG files on macOS
DeckerSU Oct 16, 2025
5b97968
feat: add test-sign-timestamp.sh script for verifying code signing an…
DeckerSU Oct 16, 2025
a528228
feat: enhance make-dmg.sh script with default app path and usage inst…
DeckerSU Oct 16, 2025
ba7a1c4
chore: update Podfile.lock to include device_info_plus and update dep…
DeckerSU Oct 16, 2025
f08976b
chore: update subproject commit reference in sdk
DeckerSU Oct 16, 2025
5ab8a18
feat: add README.md for contrib scripts and enhance test-sign-timesta…
DeckerSU Oct 16, 2025
baf31c2
chore(sdk): roll submodule to latest dev
CharlVS Oct 20, 2025
98b396b
Merge branch 'dev' of https://github.com/KomodoPlatform/komodo-wallet…
CharlVS Oct 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "sdk"]
path = sdk
url = https://github.com/KomodoPlatform/komodo-defi-sdk-flutter.git
branch = dev
branch = patch-macos-release-profile
update = checkout
fetchRecurseSubmodules = on-demand
ignore = dirty
14 changes: 14 additions & 0 deletions macos/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
'Release-production'=> :release,
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing space after 'Release-production' before =>. Should be 'Release-production' => :release, for consistent formatting with other entries.

Suggested change
'Release-production'=> :release,
'Release-production' => :release,

Copilot uses AI. Check for mistakes.
}

def flutter_root
Expand Down Expand Up @@ -52,4 +53,17 @@ post_install do |installer|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = deployment_target
end
end

team_id = '8HPBYKKKQP'
installer.pods_project.targets.each do |t|
t.build_configurations.each do |cfg|
next unless cfg.name == 'Release-production'
cfg.build_settings['DEVELOPMENT_TEAM'] = team_id
cfg.build_settings['CODE_SIGN_STYLE'] = 'Manual'
cfg.build_settings['CODE_SIGN_IDENTITY[sdk=macosx*]'] = 'Developer ID Application'
cfg.build_settings['CODE_SIGNING_ALLOWED'] = 'YES'
cfg.build_settings['CODE_SIGNING_REQUIRED'] = 'YES'
cfg.build_settings['OTHER_CODE_SIGN_FLAGS[sdk=macosx*]'] = '--options=runtime --timestamp'
end
end
end
Loading
Loading