Re: [swift-users] Coerce NSData to Data

2016-10-17 Thread Ryan Lovelett via swift-users
> Does Data have a regular initializer to construct from an NSData? It does. I've gone ahead and refactored the code to just not use NSData. Thanks! ___ swift-users mailing list swift-users@swift.org https://lists.swift.org/mailman/listinfo/swift-users

Re: [swift-users] Swift Package Manager questions

2016-10-17 Thread Daniel Dunbar via swift-users
Hi Ed, No, the package manager in the Xcode 8.1 beta only has minimal bug fixes. You can, however, get this by grabbing a snapshot toolchain from http://swift.org/download. - Daniel > On Oct 17, 2016, at 12:10 PM, Edward Connell via swift-users > wrote: > > Thanks Ankit, > Should I be able

Re: [swift-users] Swift Package Manager questions

2016-10-17 Thread Edward Connell via swift-users
Thanks Ankit, Should I be able to pick up that change with Xcode 8.1 beta 3 (latest)? Oct 10th. Ed On Mon, Oct 17, 2016 at 11:42 AM, Ankit Agarwal wrote: > Hi, > > Currently in Swift 3 release of SwiftPM, you cannot override this setting. > A proper solution to this problem is yet to be built i

Re: [swift-users] Swift Package Manager questions

2016-10-17 Thread Ankit Agarwal via swift-users
Hi, Currently in Swift 3 release of SwiftPM, you cannot override this setting. A proper solution to this problem is yet to be built in SwiftPM however in the mean time this patch was landed to allow overrides by passing custom args: https://github.com/apple/swift-package-manager/pull/715 It is ava

Re: [swift-users] Build Android GUI apps with Swift 3.0 via a framework/library

2016-10-17 Thread Jens Alfke via swift-users
> On Oct 16, 2016, at 1:35 PM, Tony Constantinides via swift-users > wrote: > > Kotlin does not run on iOS without some custom VM (Robot VM) which would kill > performance. If you mean RoboVM, it claims to use ahead-of-time compilation of Java to native code, so there shouldn’t be much of a

[swift-users] Swift Package Manager questions

2016-10-17 Thread Edward Connell via swift-users
Hi, I've written a Swift (with some C) framework the builds and runs cleanly in Xcode 8. A critical feature of my project is for my framework to run on MacOS, iOS, and Linux. I am trying to figure out how to build using the SPM so I can run on Ubuntu. I'm not so happy with the project structure now