Fernando
Fernando
@rojo69 the following `Podfile`: ```ruby use_frameworks! target 'Sample' do pod 'FirebaseUI/Google' end ``` doesn't compile: Not sure if that's your issue, but a quick Google search takes me to this...
@rojo69 I've created the following branch: https://github.com/fermoya/cocoapods-catalyst-support/tree/fix/issue-20 in which I've included the same dependencies as you. After running `pod install`, It builds successfully: Next steps: * Download the [Sample project](https://github.com/fermoya/cocoapods-catalyst-support/tree/master/Sample)...
@rojo69 how do you import `FirebaseUI`? You should do it like: ```swift #if !targetEnvironment(macCatalyst) import FirebaseUI #endif ``` As specified in the [`What does this library DO?`](https://github.com/fermoya/cocoapods-catalyst-support#what-does-this-library-do) section
@rojo69 I think any of those frameworks work with macCatalyst? have you tried?
@rojo69 do you wanna try to install this gem attached and let me know if it works? [cocoapods-catalyst-support-0.1.3.gem.zip](https://github.com/fermoya/cocoapods-catalyst-support/files/6246464/cocoapods-catalyst-support-0.1.3.gem.zip) You just need to unzip it and run `sudo gem install cocoapods-catalyst-support-0.1.3.gem`
Hi @ryanwilson , I'm having the same issue here. I wanted to see how long my WidgetExtension takes to reload the timeline, and log some custom values depending on the...
@ikhaled-ali doesn't it work if you use `loopPages(repeating: 2)`?
hey @tcamin thanks for the quick fix. I just tried and whereas now the request has an `httpBody` it seems that the ObjC casting is off: ``` Could not cast...
I'm checking the diff: ``` + (void)setProperty:(id)property forKey:(nonnull NSString *)key inRequest:(nonnull NSMutableURLRequest *)request { if ([property isKindOfClass:[NSData class]] && ((NSData *)property).length > 16834) { ... } else { ... }...
Yeah so the original body is something like this: ``` { "foo": "bar": } ``` and what I get in the monitored `[request HTTPBody]` is a `UUID`: `D68DD094-EAB4-4CEA-B401-AB1FA21BB34A`