im having an error while reviewing my release ? how to fix this - google-play-console

You can find more information about TrustManager in this Google Help Center article.
com.xxxx.xxxxx.network.HttpTrastManager
2 November 30, 2022
HostnameVerifier
Your app(s) are using an unsafe implementation of the HostnameVerifier interface. You can find more information about how resolve the issue in this Google Help Center article.
com.xxx.xxx.network.HttpTrastManager$1

Related

Your app(s) are using an unsafe implementation of the HostnameVerifier

I am facing this issue after uploading apk to the play console. It says:
Your app(s) are using an unsafe implementation of the HostnameVerifier
Play store rejected my app due to this issue, I searched everywhere but didn't find the solution for that so please help me out to resolve this issue.

Google Places and Autocomplete, problem updating to the New Places SDK

The Google Play Services Places SDK is deprecated so I'm in the process of updating. I've already updated to Androidx.
I've migrated to the New Places SDK Client as per this guide, changing implementation 'com.google.android.gms:play-services-places:11.0.4' in my build.gradle file to implementation 'com.google.android.libraries.places:places:2.0.0'
And in my Activity I've changed:
import com.google.android.gms.location.places.Places; to
import com.google.android.libraries.places.api.Places;
So, that problem has been rectified, it no longer comes up as a red error.
But I am still getting:
Do you know how I can solve this? I've tried preceeding each red text with com.google.android.libraries.places.api to no avail.
The possible solutions I looked up on SO are old and don't deal with this Places migration which only happened in July 2019.
Any help would be appreciated.

MSAL function missing - FirstOrDefault()

I'm trying to follow the examples online (https://learn.microsoft.com/en-us/azure/active-directory/develop/guidedsetups/active-directory-windesktop) but don't appear to have the correct library installed...?
Via NuGet cmdline: Install-Package Microsoft.Identity.Client -Pre
All the examples on the internet use a method that's part of the PublicClientApplication class, PublicClientApp.Users.FirstOrDefault() to get the same auth token that was received when following the SignOn dialogs. However this method does not apparently exist in my codebase!?!?!
Does anyone have any insights as to why this might be? Or insights as to the new workaround for this subject? I believe the content i'm using hasn't been modified since April 2017..
Microsoft.Identity.Client version = 1.1.2.0, runtime version v4.0.30319
Adding a reference to System.Linq resolved the issue originally stated..

Java SDK for Facebook Ads API 2.10 missing AdsInsights.getFieldImpressionDevice() method

Currently using Facebook Ads SDK for Java v2.9 and trying to upgrade to v2.10 or v2.11. However, neither of the newer versions has the method getFieldImpressionDevice on the AdInsights object? I haven't found any change log info that discusses a change or deprecation around this call. Anyone have any insight into this problem?
Also a little confused as to why github :
https://github.com/facebook/facebook-java-ads-sdk/
doesn't have the 2.10 or 2.11 libs only the 2.9 libs even though this link indicates it, eg.,
src/main/java/com/facebook/ads Ads SDK v2.11 Release Nov 8, 2017
Thanks for any help
There's a known issue it turns out. Some (or all) of the breakdown fields and methods in the AdsInsights class were left out. It can be worked around using raw json, eg.,
JsonObject jo = insight.getRawResponseAsJsonObject();
JsonElement je = jo.get("impression_device");
String device = je.getAsString();

How to find Xcode developer API

I want to write a plugin for Xcode,
however for that I need some api I can connect to, to change the behaviour of Xcode.
where can I find the API?
simply searching for "Xcode developer API" ,"Xcode developer class reference" , "Xcode API", only yields questions about it, not the official API?
As a very related question answered a couple years ago, there is no official documentation from Apple.
But you're not entirely alone.
Here's an Xcode 5 plugin template on GitHub, and some pointers in an article that talks about Plugin development for theXcode 4.

Resources