Fix Swift Package Manager checksum mismatch causing Xcode 26 integration failures#40
Draft
Copilot wants to merge 3 commits into
Draft
Fix Swift Package Manager checksum mismatch causing Xcode 26 integration failures#40Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
Author
|
@venkatesh-ramesh-12517 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs. I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review. |
…checksum Co-authored-by: venkatesh-ramesh-12517 <107845427+venkatesh-ramesh-12517@users.noreply.github.com>
…ure issues Co-authored-by: venkatesh-ramesh-12517 <107845427+venkatesh-ramesh-12517@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Issue: Swift Package Manager checksum mismatch error with Xcode 26 - binary artifacts corrupted
Fix Swift Package Manager checksum mismatch causing Xcode 26 integration failures
Sep 23, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR resolves the critical Swift Package Manager checksum mismatch error that prevents Xcode 26 users from integrating the Mobilisten iOS SDK.
Problem
Users attempting to add Mobilisten via Swift Package Manager in Xcode 26 encountered this error:
Root Cause
The issue was caused by inconsistency between the git repository content and GitHub release assets:
v10.1.3git tag contained an outdatedFrameworks/Mobilisten.zipfile with checksum0f5f99acc2e63842a2afa17478ba0efb0ba4c2cecfcf27edbf46ba2be30dc65ev10.1.3release asset contained the correct updated file with checksum9d59e2407050387edb406f7527665918143a84b871ff50bbbb107a4fc4b61449Solution
1. Framework Consistency Fix
Frameworks/Mobilisten.zipto match the v10.1.3 release asset exactly9d59e2407050387edb406f7527665918143a84b871ff50bbbb107a4fc4b614492. Prevention Tools
.github/workflows/validate-checksums.yml) that automatically validates checksum consistency on tag pushesscripts/validate-checksums.sh) for local development with multiple validation modesSPM-INTEGRATION.md) with troubleshooting procedures and release guidelines3. Process Improvements
Validation
The fix has been thoroughly validated:
All three sources now return identical checksums, ensuring SPM integration will work correctly.
Next Steps
The SPM repository (
SalesIQ-Mobilisten-iOS-SP) will need to be updated separately to point to v10.1.3 with the correct checksum. The exact changes needed are documented in the new SPM integration guide.Fixes #39.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.