No One
No One

Reputation: 704

Importing GitHub project to AndroidStudio not appearing correctly

I'm working on an Android application and I've pushed it to GitHub from my windows computer, I'm having problems to pull the code from repository in Mac OS, when it downloads it shows like if the project was corrupt or something.

It shows this:

Android-studio project

As you can see the project doesn't download the folder app and all the files that i pushed to the Repository

I might not be pushing it correctly because i've tried to clone well built Android repositories and and they work nicely.

Thanks a lot for your help and Sorry for my English.

Upvotes: 2

Views: 1743

Answers (1)

Pankaj Nimgade
Pankaj Nimgade

Reputation: 4549

Things which you need to do, crate a directory where you want the project to be set up this.

I made a directory called Juanjors_AndroidMeneame and navigated my git bash there.

enter image description here

as shown in the image initialize local git repository.

and then pull the data. as shown in the image

git pull https://github.com/Juanjors/AndroidMeneame.git

after this import the project, and this is what you will get

enter image description here

Upvotes: 2

Related Questions