Raúl LB
Raúl LB
Hi, I found the main reason for me. `OVER_QUERY_LIMITYou have exceeded your rate-limit for this API. We recommend registering for a key at the Google Developers Console: https://console.developers.google.com/apis/credentials?project=_` Try the...
I think google changed license terms for using googlemaps api. I don´t read a lot about the terms but now It looks like all requests need to have an api...
I changed from using ```csharp TResponse respuesta = await this.apiClient.PostContentAsync(relativeUrl, content); ``` to ```csharp HttpResponseMessage httpResponse = await this.httpClient.PostAsJsonAsync(relativeUrl, content); string stringResponse= await httpResponse .Content.ReadAsStringAsync(); TResponse response = JsonConvert.DeserializeObject(stringResponse); ```...
I am having this issue when switching between two control templates in a TemplatedView. In my case, the parent is always the same, just based on a condition I show...
@jr-araujo I am thinking if perhaps the problem is related with what happen on the OpenAI session with the mediatype. Tomorrow I will take a look at it and will...
At least, I tested it with the new version. I have to congratulate and communicate all of you, the issue I was having with 2.9 version it is resolved on...
I found a way, not too pretty but works. This needs to be done under platform code for android ```csharp while (platformView.PreviewStreamState.Value != PreviewView.StreamState.Streaming) await Task.Delay(200); ``` As a possible...