2017-01-14 1 views

答えて

0

を使用してそれを修正:だろう https://www.ssllabs.com/ssltest/analyze.html?d=jcenter.bintray.com

本当の問題が何かを知ることは興味深い。

+0

おそらく、私がjcenter.bintray.comを他のISPを使って試してみたので、うまくいきました。私は同じISPを使っている友人と話しましたが、同じISPにも同じエラーがあります。 – Bryan

0

私は、これは間違って設定DNSまたはMITMプロキシーの結果である可能性がありようですね、他のURLではなくjcenter.bintray.com

buildscript { 
    repositories { 
     jcenter() 
     maven { url 'http://repo1.maven.org/maven2' } 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.2.3' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
     classpath 'com.google.gms:google-services:3.0.0' 
    } 
} 

allprojects { 
    repositories { 
     maven { url 'http://repo1.maven.org/maven2' } 
    } 
} 
関連する問題