Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import android project in ADT Eclipse from github

Tags:

People also ask

How do I add an Android Studio project to an existing GitHub Repository?

In Android Studio - Within Android Studio, select VCS -> Git -> Pull and check the box. Check the box reading “github/master” and then select “Pull”. This downloads the README from Github to your local repo. Now you should be all set!

How do I copy a project from GitHub to Android studio in Terminal?

On github web, go to the repo you want yo clone and click on the download button (code) then copy the url where it says clone with https. In Android Studio 4.0, go to VCS (if you've added a github plugin) then click on Get From Version Control, it will load a window where you'll paste in the url you got from github.


I'm trying to import an android project from github into ADT Eclipse but it doesn't find any projects in the repository when I clone it. The repo is clearly an android application project (from looking at the source) but no project is found to import. My steps are as follows:

  1. In "Package explorer" right-click and select "Import"

  2. Import project from Git.

  3. Enter uri: https://github.com/moagrius/MapViewDemo

  4. Just import master.

  5. When cloning is done the following dialog shows up:

enter image description here

  1. When choosing "Import existing projects" the below dialog shows:

enter image description here

Why are no projects found to import!? How can I import the projects into eclipse?

Thanks for help!