Reputation: 2678
I am developing my android application on Android-Studio
. My project was checked out project from Git version control
. Everything works fine. Except that I cannot see build.gradle
file. Hence I am unable to add modules or libraries.
build.gradle
file ?!build.gradle
?Here is what I did to import my project:
Check out project from Version Control
-> Git
,
after cloning, the following box appears:
I click `Yes. The follwoing box appears:
I accept the default options and click Ok
, then the following box appear:
Again, I accept the default options and click Ok
Then my projec loads on Android-Studio
. It shows me the following message:
Before I click on add root, the following box appears:
I click on dont' remind me again for this project
. After that I can continue programming (Git and Version Control is working). But build.gradle
is nowhere to be found !!
UPDATE 1:
The following image is the project
view:
what am I doing wrong ?
UPDATE 2:
Here is the Android
view:
Upvotes: 1
Views: 7553
Reputation: 2678
With huge help from Stack Overflow community, I figure out how to solve it. Here is what I did:
Android-Studio
following this guidance, then ...Gradle
from this link, then ...Android-Studio
following this link:I am gussing the main problem was that I didn't installed Gradle manually and hence Android-Studio
was using some sort of Gradle-Wrapper to allow the application to run.
Now, finally I can edit build.gradle
.
Upvotes: 2
Reputation: 41
Choose Android View instead of Project View.. enjoy
see image1
see image2
Upvotes: 4