Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to use a proxy connection with android studio

I'm trying to run a "hello world" application in android studio. My connection is via proxy. When I try run the "hello world app", android studio show me the next error:

Error running Prueba: Gradle project sync failed. Please fix your project and try again.

If I configure in: "File/setting -> HTTP Proxy" and next put my proxy configuration, the error is the next:

Error:Could not GET 'http://jcenter.bintray.com/com/android/tools/build/gradle/0.12.2/gradle-0.12.2.pom'. Received status code 407 from server: Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied. ) <a href="toggle.offline.mode">Enable Gradle 'offline mode' and sync project</a>

How can I fix that error?

like image 623
Amaurys Sánchez Avatar asked Nov 13 '14 19:11

Amaurys Sánchez


People also ask

Can I use JDK 17 with Android Studio?

As per the docs, JDK 17 isn't supported yet in Android Studio.

Do you need JDK for Android Studio?

You must install Oracle JDK before installing Android Studio, so please don't start this step until you have completed Step 1 above. Download Android Studio from the following address: Android Studio Download Page.

What is NDK tools in Android Studio?

The Native Development Kit (NDK) is a set of tools that allows you to use C and C++ code with Android, and provides platform libraries you can use to manage native activities and access physical device components, such as sensors and touch input.


1 Answers

There error indicates that proxy authentication is needed. To authenticate to your proxy server go back to File->Setting->HTTP Proxy, check the box for Proxy authentication and enter your credentials there. Also, click the check connection button to test that your connection is successful.

like image 195
Mike Avatar answered Oct 01 '22 04:10

Mike