Conrad Kramer
02/21/2022, 6:18 AMassembleAppleFrameworkForXcode
somewhere. I needed to use it to depend on a Kotlin framework from an iOS framework, because embedAndSignAppleFrameworkForXcode
only works in app targetsSam
02/21/2022, 2:50 PMConrad Kramer
02/21/2022, 10:42 PMiOS framework -> App, several extensions
If i want the iOS framework to depend on the Kotlin framework in any way, it needs to be compiled before the iOS framework is, and the App won’t start compiling until after the iOS framework is done if that makes senseConrad Kramer
02/21/2022, 10:44 PMThomas
03/22/2022, 8:47 PMassembleAppleFrameworkForXcode
task no longer exists.Conrad Kramer
03/22/2022, 10:00 PMConrad Kramer
03/22/2022, 10:01 PMexport FRAMEWORKS_FOLDER_PATH=PutAnythingHere
export EXPANDED_CODE_SIGN_IDENTITY="-"
./gradlew :shared:embedAndSignAppleFrameworkForXcode
Thomas
03/22/2022, 10:14 PMSebastian
12/14/2023, 4:33 PMPutAnythingHere
is appended to
DerivedData/ios/Build/Products/$(CONFIGURATION)/
(also an absolute path is appended) where the java process has no write-permission
I had to disable the sandboxing (make sure to “reboot” aka stop Xcode and kill the gradle daemon).Conrad Kramer
12/14/2023, 5:03 PMSebastian
12/15/2023, 10:19 AMmbonnin
03/24/2024, 9:34 PMkill the gradle daemonOMG I just spent 2 hours on this 🤦‍♂️ . Thanks!