Teran Peterson

Results 7 comments of Teran Peterson

I am experiencing this same error as well. I've uninstalled the `cordova-plugins-splashscreen` plugin and removed all associated `preference` and `splash` tags from my config. All I have now is the...

I was experiencing this and fixed it by changing the `` path from backslash `\` to forward slash `/`. Wrong: ```xml docs\README.md ``` Right: ```xml docs/README.md ```

I am experiencing this same issue. Types are all conflicting because they are looking for the Xamarin.iOS.xxx instead of the Microsoft.iOS.xxx. Did this get reported upstream?

To be more specific (and I believe this is the same for @blazorin), the `Xamarin.iOS` dependency required by `Xamarin Binding Library (iOS)` projects is the problem. Objective Sharpie still works...

A solution was released yesterday as part of `.NET Conf: Focus on Maui` in [this](https://www.youtube.com/watch?v=oibfI-ZsmzQ) video. There are new binding library templates that can be built from the cli: ```bash...

Same issue ![Screenshot_2020-05-11_23-16-27](https://user-images.githubusercontent.com/5717131/81634770-dc7ccf80-93cc-11ea-8cfc-283035540125.png)

### Example monkey patch for a POST request if anyone is looking: POST request function in Simple Client: ```python3 def new_post(self, uri, payload, headers=None, co3_context_token=None, timeout=None): # Hot rewrite for...