Reputation: 2433
I'm working at a corporate location where we have restricted access to network. The hurdle that I'm facing is that I'm supposed to do some research on Android development and the network is not what I wanted it to be. I have installed Android Studio and created a new project. But as soon as the project is loaded, gradle sync operation starts and fails after not finding JUnit & similar dependencies.
I have already added the proxy settings in Android Studio and SDK manager, but I believe I'll have to request for unblocking some of the URLs that Android Studio needs access to. I couldn't find any such list, can someone please help me with the same?
I have tried running Fiddler to see which requests are being blocked, but I see only 1 URL and that is clients1.google.com
but I'm not sure that is the only thing needed.
Upvotes: 0
Views: 376
Reputation: 2433
After lots of hits and misses, I have found the answer to this question. The build.gradle
file for the project has the answer to this. It calls a function jcenter()
which internally calls the libraries available at http://jcenter.bintray.com/
. So, the entire list for Android Studio development including the SDK would be:
Thanks for all the help provided.
Upvotes: 2