Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bielikb/fastlane-plugin-create_xcframework
Fastlane plugin that creates xcframework for given list of destinations 🚀
https://github.com/bielikb/fastlane-plugin-create_xcframework
fastlane fat framework module plugin stability swift xcframework xcode
Last synced: 9 days ago
JSON representation
Fastlane plugin that creates xcframework for given list of destinations 🚀
- Host: GitHub
- URL: https://github.com/bielikb/fastlane-plugin-create_xcframework
- Owner: bielikb
- License: mit
- Created: 2020-06-27T09:02:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-09T08:29:55.000Z (3 months ago)
- Last Synced: 2024-09-26T14:18:25.363Z (about 1 month ago)
- Topics: fastlane, fat, framework, module, plugin, stability, swift, xcframework, xcode
- Language: Ruby
- Homepage:
- Size: 33.2 KB
- Stars: 75
- Watchers: 4
- Forks: 14
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# create_xcframework plugin
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-create_xcframework)
## About create_xcframework
Fastlane plugin that creates xcframework for given list of destinations 🚀
## Requirements
* Xcode 11.x or greater. Download it at the [Apple Developer - Downloads](https://developer.apple.com/downloads) or the [Mac App Store](https://apps.apple.com/us/app/xcode/id497799835?mt=12).
* fastlane## Getting Started
To get started with `create_xcframework` plugin, add it to your project by running:
```bash
$ fastlane add_plugin create_xcframework
```## Usage
```ruby
create_xcframework(
workspace: 'path/to/your.xcworkspace',
scheme: 'framework scheme',
product_name: 'Sample', # optional if scheme doesnt match the name of your framework
destinations: ['iOS', 'maccatalyst'],
xcframework_output_directory: 'path/to/your/output dir'
)
```Run
```bash
$ fastlane actions create_xcframework
```
to learn more about the plugin.### Supported destinations
* iOS
* iPadOS
* maccatalyst
* tvOS
* watchOS
* carPlayOS
* macOS
* visionOS## Output
#### Files:
* xcframework
* dSYMs dir
* BCSymbolMaps dir (if bitcode is enabled)#### Env vars:
* XCFRAMEWORK_OUTPUT_PATH
* XCFRAMEWORK_DSYM_OUTPUT_PATH
* XCFRAMEWORK_BCSYMBOLMAPS_OUTPUT_PATH## Contribution
- If you **want to contribute**, read the [Contributing Guide](https://github.com/bielikb/fastlane-plugin-create_xcframework/blob/master/CONTRIBUTING.md)