Skip to content

Commit

Permalink
fix(ad-hoc): framework artefacts plist version strings (#144)
Browse files Browse the repository at this point in the history
* Fix cmark framework info plist version strings
* Fix processout framework plist version strings
  • Loading branch information
andrii-vysotskyi-cko authored Jul 27, 2023
1 parent e84f4bd commit 0654e65
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Scripts/CMark/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ targets:
SKIP_INSTALL: NO
BUILD_LIBRARY_FOR_DISTRIBUTION: YES
PRODUCT_BUNDLE_IDENTIFIER: com.processout.cmark-ios
CURRENT_PROJECT_VERSION: ${CURRENT_VERSION}
MARKETING_VERSION: ${CURRENT_VERSION}
CURRENT_PROJECT_VERSION: 1
MODULEMAP_FILE: src/module.modulemap
sources:
- path: src
Expand Down
10 changes: 5 additions & 5 deletions Vendor/cmark.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>cmark.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>cmark.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified Vendor/cmark.xcframework/ios-arm64/cmark.framework/Info.plist
Binary file not shown.
Binary file modified Vendor/cmark.xcframework/ios-arm64/cmark.framework/cmark
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 2 additions & 1 deletion project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ targets:
deploymentTarget: "12.0"
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.processout.processout-ios
CURRENT_PROJECT_VERSION: ${CURRENT_VERSION}
MARKETING_VERSION: ${CURRENT_VERSION}
CURRENT_PROJECT_VERSION: 1
SKIP_INSTALL: NO
BUILD_LIBRARY_FOR_DISTRIBUTION: YES
OTHER_SWIFT_FLAGS: "-Xfrontend -module-interface-preserve-types-as-written"
Expand Down

0 comments on commit 0654e65

Please sign in to comment.