Tiny icon indicating copy to clipboard operation
Tiny copied to clipboard

Google play reject

Open crossle opened this issue 7 years ago • 1 comments

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. https://support.google.com/faqs/answer/7188426 HttpUrlConnectionFetcher.java

            HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
                @Override
                public boolean verify(String hostname, SSLSession session) {
                    return true;
                }
            });

crossle avatar May 08 '17 02:05 crossle

@crossle see version-v0.0.5

Sunzxyong avatar May 08 '17 07:05 Sunzxyong