-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XcFramework Generation #350
Merged
Merged
Conversation
This file contains 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
thomaskioko
force-pushed
the
xcode-framework-gen
branch
7 times, most recently
from
November 18, 2024 22:04
37d1f12
to
e0ebf3d
Compare
- Remove duplicate dependency. - Set binary options.
- Refactor iOS state wrappers to use skie Flow. - Delete kotlin flow wrapper.
… for iOS. The plugin: - Configures framework assembly tasks for different build types - Handles copying assembled frameworks to iOS module directory - Implements cleanup of existing frameworks and intermediate files - Supports multiple native target types - Add Fastlane gradle task
- Move font to Resources dir. - Add font registration at app startup
- Update deployment target to iOS 17.0 - Add new Swift package dependencies (TvManiacKit, TvManiacUI, SwiftUIComponents) - Configure framework search paths - Enable Swift asset symbol extensions - Update build settings for better compatibility
- Remove verbose logging options that weren't providing value - Remove redundant buildlog_path configuration - Keep essential build settings for both gradle and xcodebuild tasks - Maintain derived_data_path for consistent build location
…wift version (5.0) as defined in your project configuration.
This commit improves the CI/CD pipeline with better caching, dependency management: - Remove redundant lint_and_test job - Fix backslashes in secrets configuration - Improve error handling for screenshot tests Cache Management: - Add SPM dependency caching for faster package resolution - Implement Gradle caching for better build performance - Cache DerivedData to speed up subsequent builds Build Process: - Make build-ios job dependent on common_test completion - Add build monitoring and timing metrics - Increase timeout for package resolution fix: correct job dependencies in GitHub Actions workflow - Fix invalid reference to removed 'lint_and_test' job - Update create-release job dependencies to include all required checks Remove verification task. 😭 Cleanup - Set iPhone deployment target to 16.1 - Add fastlane debug information. - Specify xcode version.
Revert change and remove logs. Update Xcode version to 15.3 Improve iOS build stability and performance - Add xcode-install and xcpretty gems for better build output and control - Disable Gradle build scan publication to prevent CI hangs - Add verbose logging and build logs path for better debugging - Clean build directory before each run - Update fastlane configuration for more reliable builds Remove duplicate configuration.
Update iOS build configuration for simulator support - Add build configuration parameters in gym task for better framework distribution control - Clean up Fastlane formatting and remove unnecessary gradle task parameters Replace deprecated action.
Revert CI changes.
Remove task from CI and use simulator task in Fastlane job. Comment iOS build job
thomaskioko
force-pushed
the
xcode-framework-gen
branch
from
November 19, 2024 19:32
03a6b8e
to
9c50832
Compare
thomaskioko
force-pushed
the
xcode-framework-gen
branch
from
November 19, 2024 19:44
9c50832
to
97a0a20
Compare
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.
Description
This PR implements a gradle plugin that generates the XCFramework and copies it to a swift package. I wrote a small article about it. XCFramework Generation Using A Custom Gradle Plugin
Other Changes
Fixes (iOS)