由于我的声誉不高,但是我希望分享自己的答案,所以我自己进行质量检查。
最终答案:
导出证书(带有Google证书)C:\ Users \ chend15.AndroidStudio3.1 \ system \ tasks \ cacerts 使用密钥库资源管理器(http://keystore-explorer.org/)或keytool作为.cert文件。
将导出的.cert文件导入到Android Studio的cacerts中 D:\ android-studio \ jre \ jre \ lib \ security \ cacerts
根本原因是当gradle同步build.gradle中的以下依赖项 ... 依赖项{ classpath'com.android.tools.build:gradle:3.1.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
} ... 它将使用android studio cacerts下载依赖项。
问候 迪伦