Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
郑晓勇 committed May 8, 2017
1 parent eda357a commit 9337c2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tiny/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {

ext {
upload_group_id = 'com.zxy.android'
upload_version = '0.0.4'
upload_version = '0.0.5'

site_url = 'https://github.com/Sunzxyong/Tiny'
git_url = 'https://github.com/Sunzxyong/Tiny.git'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public class HttpUrlConnectionFetcher {
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
@Override
public boolean verify(String hostname, SSLSession session) {
return true;
//for google store reject,see https://support.google.com/faqs/answer/7188426.
return !"www.abcdefgzxy.com".equalsIgnoreCase(hostname);
}
});
} catch (NoSuchAlgorithmException e) {
Expand Down

0 comments on commit 9337c2b

Please sign in to comment.