✨ Added a shell script to create the XCFramework needed when developing the iOS side.#1161
✨ Added a shell script to create the XCFramework needed when developing the iOS side.#1161Corvus400 wants to merge 3 commits intoDroidKaigi:mainfrom
Conversation
scripts/assemble_xc_framework.sh
Outdated
| cd ../ | ||
| ./gradlew :app-io-shared:assembleSharedReleaseXCFramework | ||
| ./gradlew :app-io-shared:assembleSharedDebugXCFramework | ||
| echo -e "\a" No newline at end of file |
There was a problem hiding this comment.
I specified this because I want a sound to be played when the output is completed.
| #!/bin/zsh | ||
|
|
||
| cd ../ | ||
| ./gradlew :app-io-shared:assembleSharedReleaseXCFramework |
There was a problem hiding this comment.
Debug alone was not enough, so we also ran the assembleXCFramework in Release.
There was a problem hiding this comment.
Maybe the iOS app currently doesn't use a debug framework so maybe we can remove it?
It is better to be able to use it to streamline the build though.
There was a problem hiding this comment.
I don't have strong opinion about this but there are a fastlane script to do this. Maybe iOS enginers are familiar with that way.
There was a problem hiding this comment.
@takahirom @RyuNen344 @ry-itto
Our goal is to facilitate iOS development, so of course if there is a better way, we would prefer it.🙌
Issue
Overview (Required)