使用代理在 Android 项目中添加依赖项需要启用哪些通用 URL



在我的组织中,由于安全性,他们限制了社交媒体网站,其他网站等网络。因此,我无法在我的项目build.gradle中添加一些Android依赖项。

例如:-

compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.mcxiaoke.volley:library:1.0.19'

但是我可以添加默认的android依赖项,如下所示。

compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:multidex:1.0.1'

所以,我的问题是需要启用哪些通用 URL 才能build.gradle获取所有依赖项。我会要求他们启用这些 URL。

提前致谢

我相信

URls是特定于依赖关系的,会从一个到另一个。为什么不为代理配置您的 gradle?

完整答案在这里

相关内容

  • 没有找到相关文章

最新更新