Ryan Padget
Ryan Padget
I ran into this as well. To get around it, I converted the resolved yaml file to json, and changed my PHP code to reference the json file instead. ```...
Oh I see the concern... Personally I would prefer typing multiple `use function`'s, but it would be nice to still provide both API's so the user could choose. Would it...
I was just wondering if you could provide both the static methods and the standalone functions in the same version of Pramda (by making use of `__callStatic` in `P`): ```...
Excellent - you're welcome! That's great that it will keep working for 5.5, nice revision 👍. I'll be looking forward to the next release then, and thanks for porting Ramda...
I had the same issue using the Podfile example in the readme. I got it working by specifying the versions for each pod, shown here: https://docs.appodeal.com/ios/get-started#integration-code
So that Podfile fix got me closer, but I still couldn't get my app to build because of this error: ``` ❌ Undefined symbols for architecture arm64 ┌─ Symbol: __swift_FORCE_LOAD_$_swiftCompatibility56...
I had to install version `3.20.0-beta.0` to access `.string().datetime()`. https://github.com/colinhacks/zod/releases/tag/v3.20.0
@benedictpmateo I had this issue as well, even after a `cd ios; pod install`. It worked after I uninstalled the app, deleted all pods `rm -rf ios/Pods/*`, re-ran `pod install`,...