David Magalhães
David Magalhães

Reputation: 822

Import Android-Gradle project into Android Studio

I'm trying to import a project that I created in another machine using Android Studio, to a new machine, using the same software.

I select "Import project (Eclipse ADT, Gradle, etc.)", then select the folder, that have the following structure:

  app
  build.gradle
  build
  gradle
  gradle.properties
  gradlew
  gradlew.bat
  local.properties
  settings.gradle

The problem is that I cant setup the project like in the other machine, were i created it. In the "Project > Android" appears "Nothing to show".

Upvotes: 8

Views: 26648

Answers (1)

Ace Siena
Ace Siena

Reputation: 239

Instead of selecting "Import project (Eclipse ADT, Gradle, etc.)," select "Open an existing Android Studio project" then navigate to the topmost build.gradle file of your project.

Upvotes: 19

Related Questions