Vcs Project Import Not Working On Android Studio
I am trying to import a git project from Bitbucket to Android Studio 3.2. However when I follow the steps New -> Project from Version Control-> Git, the project is imported
Solution 1:
Importing a project like that implies (for AS) that your are importing a module, not starting a new project.
Start by creating a new, empty project. Then import the module or project from Github or Bitbucket
Voilá.
EDIT
By now you should've seen the only thing missing was a host directory and a build.gradle
file for the whole project structured like this:
buildscript {
...
repositories {
google()
jcenter()
}
dependencies {
....
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Post a Comment for "Vcs Project Import Not Working On Android Studio"