Mark Turner

Results 246 comments of Mark Turner

Assuming reason would be this opens up features enabled as part of newer swift versions? I wonder if my comments here are relevant: https://github.com/ttypic/swift-klib-plugin/issues/10#issuecomment-1899538877 As if the requirement for using...

Not sure how relevant but it is also possible to compile Swift packages to Android: ```swift .target(name: "Android", condition: .when(platforms: [.android])) ```` Hope you don't mind me posting this here...

@MatthiasWissink is there an Android equivalent to `kGCKDefaultMediaReceiverApplicationID`? ---- Edit: Looks like there's `DEFAULT_MEDIA_RECEIVER_APPLICATION_ID` Might open a PR to use these constants in example rather than `D6760CCD` / `4F8B3483` as...

> The receiver ID of the example points to a custom web receiver that showcases the feature of the example sender. @gianlucaparadise Care to share how to use the custom...

@twyatt I'd be interested to try and take this on. I think it may be achievable using `swift build`. However may be blocked when building libraries which depend on Obj-C....

https://youtrack.jetbrains.com/issue/KT-53877/Support-Swift-Package-Manager-in-Kotlin-Multiplatform Comment on the Jetbrains issue could be relevant. I need to investigate using Gradle plugin to build swift `Package.swft`. https://docs.gradle.org/current/userguide/building_swift_projects.html https://docs.gradle.org/current/userguide/swift_library_plugin.html#swift_library_plugin

mmm perhaps not possible with Gradle plugin, seems iOS not available:

Using the following command I can build my `Package.swift` directly which produces output binary. ```shell xcodebuild build -scheme RadioPlayerLocal -sdk "`xcrun --sdk iphonesimulator --show-sdk-path`" -destination "OS=17.1,name=iPhone 13 Pro" ``` https://github.com/openbakery/gradle-xcodePlugin...

`xcodebuild build` produces a Mach-O object `.o` file rather than a framework/static library. possibly need to take steps like this in order to produce a packaged XCFramework: https://mustafa-ysf.medium.com/creating-xcframework-from-swift-package-e8af6f44501f Also a...

I've put together a project to reproduce: [DependencyDemo.zip](https://github.com/simonbs/dependency-graph/files/13900689/DependencyDemo.zip)