You are using an unsafe implementation of X509TrustManager

后端 未结 5 1758
-上瘾入骨i
-上瘾入骨i 2021-01-31 22:06

I\'ve an app in Google Play, today I received a mail from Google saying that:

Google Play warning: You are using an unsafe implementation of X509TrustMa

5条回答
  •  我在风中等你
    2021-01-31 22:47

    Read this: http://docs.appcelerator.com/platform/latest/#!/guide/SSL_Certificate_Store_Support_for_HTTP_Clients

    It all about the Google pushing everybody to use https. If you are using into your app the Titanium.Network.createHTTPClient object, then you will have to implement that with this:

    var certificateStore = require('ti.certificatestore').
    

    The module can be find here: https://github.com/appcelerator-modules/ti.certificatestore

提交回复
热议问题