Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importing project into Android studio

I am trying to import an Android library I've created into Android Studio. I've exported the app from Eclipse by going to File > Export > Gradle Build Files which completed successfully.

However, when I try and import the project into Android Studio I get the following error:

You are using an old, unsupported version of Gradle. Please use version 1.8 or greater. Please point to a supported Gradle version in the projects Gradle settings or in the project's Gradle wrapper (if applicable)

I've followed the instructions from Unable to import Eclipse project to Android Studio but this hasn't worked.

Thanks for any help you can provide

like image 661
Boardy Avatar asked Dec 02 '25 05:12

Boardy


1 Answers

  • Download Gradle 1.8: http://www.gradle.org/downloads
  • Install/Copy it in a folder on your computer.
  • Check what gradle installation you use in Settings (Strg+Alt+S) -> Gradle

enter image description here

  • Check "use local gradle distribution" and point in "gradle home:" to the gradle installation
like image 93
Patrick Favre Avatar answered Dec 06 '25 00:12

Patrick Favre