RxSwiftCommunity / RxSwiftExt

A collection of Rx operators & tools not found in the core RxSwift distribution
MIT License
1.33k stars 213 forks source link

Xcode 15 #272

Closed gitMartynas closed 1 year ago

gitMartynas commented 1 year ago

Having issue to compile the project using Xcode 15 beta 6

Cannot specialize non-generic type 'Observable'

Screenshot 2023-08-17 at 09 15 31

Screenshot 2023-08-17 at 09 15 46

freak4pc commented 1 year ago

Hey, please see here: https://github.com/ReactiveX/RxSwift/issues/2532

This is a regression from Beta 5 and we're waiting to see if they resolve it: https://github.com/apple/swift/issues/67815

rudedogdhc commented 1 year ago

I can confirm that it is not yet resolved with Xcode 15 beta 7.

freak4pc commented 1 year ago

I've added a fix to 6.2.0

TR0NZ0D commented 1 year ago

@freak4pc Any plans on updating this new 6.2.0 version to CocoaPods? We're being blocked from doing a regression in Xcode beta 6+

freak4pc commented 1 year ago

Yes, it's just been a nightmare uploading new things to CocoaPods but I'm working on it.

TR0NZ0D commented 1 year ago

Yes, it's just been a nightmare uploading new things to CocoaPods but I'm working on it.

No worries, I'll try to use the 6.2.0 version without CocoaPods meanwhile, take your time.

Thanks

freak4pc commented 1 year ago

Yes, it's just been a nightmare uploading new things to CocoaPods but I'm working on it.

No worries, I'll try to use the 6.2.0 version without CocoaPods meanwhile, take your time.

Thanks

For the time being I suggest targeting your Podfile directly to the 6.2.0 tag or commit which would make things simpler.

TR0NZ0D commented 1 year ago

Yeah, just made that, it worked, however this issue also happens in RxRealm pod, but your fix also resolves the issue from RxRealm pod.

adamsousa commented 1 year ago

Seeing this issue in Xcode 15 Beta 8

adamsousa commented 1 year ago

This issue has not been fixed because the alias file was not correct added to the project. Created a PR that corrects this by adding the file to the correct targets and the project file: https://github.com/RxSwiftCommunity/RxSwiftExt/pull/275

Dhananjayaraop commented 12 months ago

Currently I am using Pod version 'RxSwiftExt', '6.0.1' . I am getting below errors in Xcode 15. Could you please provide updated pod version!. Find the attached screenshot.

Screenshot 2023-10-30 at 1 10 46 PM
ThomasReyskens commented 11 months ago

I fixed it by prefixing all Observables w/ RxSwift. For example ->

image