I\'m starting to use Android Studio. I\'d like to open project from GitHub https://github.com/TonicArtos/StickyGridHeaders
On first screen I click \'Check out from Versi
The project is not a Gradle Project, so it is not compatible with Android Studio yet.
I recommend to check out from Github inside Eclipse and export as a 'Gradle Project'.
Then, proceed to import that project into Android Studio.
There are several SO questions on this topic, but @MartinRevert's answer (https://stackoverflow.com/a/24978323/5025060) is the only one I found mentioning Android Studio's (AS's) Gradle dependency. If the Github project was built with Eclipse, importing it to AS will work but the result will not be buildable with AS (indication: the project's "Make project" icon is grayed out in AS).
Building on Martin's answer, and using IntelliJ's Migrating From Eclipse Projects page as a reference, I found a simple and transparent way to import an Eclipse-based Github project into AS 2.1.2:
File->New->Project from Version Control->Github
This clones the Github project, but if it is not a Gradle Project (see above), follow these additional steps:File->New->Import Project
and click on the folder you stored the project to in step (1) above. Accept all of the defaults and AS will "import" the Eclipse project to a Gradle project which it will now be able to build.Related questions: