ANSWER # 2: Providing the correct correction after two negative marks
Make these changes to the top level build.gradle file.
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { //jcenter() jcenter { url "http://jcenter.bintray.com/" <=THIS IS THE LINE THAT MAKES THE DIFFERENCE } } } allprojects { repositories { //jcenter() jcenter { url "http://jcenter.bintray.com/" <=THIS IS THE LINE THAT MAKES THE DIFFERENCE } } }
ANSWER # 1 (Although this is not accepted, I would like to keep it)
If you see "errors without authentication", this does not necessarily mean that the application does not have a valid certificate. It may also mean that connections are reset by a firewall, load balancer, or web server. (re) starting an application with Administator privilege.
On Windows:
- Make sure you have administrator rights.
- Right-click the application icon β Choose Run as Administrator
On Linux:
- Make sure you have root access.
- type
sudo "app execution script name"
Devendra Vaja Jul 21 '15 at 18:58 2015-07-21 18:58
source share