Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio moving project to another computer?

Tags:

Does anyone one know how to move one project built using Android Studio to another computer?

like image 263
Super Sasquatch Avatar asked Apr 10 '15 18:04

Super Sasquatch


People also ask

Can you share projects in Android Studio?

Knowing how to export an Android Studio project is excellent when you need to move files and code to another computer over mail or sharing it in any other way. Moreover, sharing projects like this can be a perfect way of collaboration for beginners.


2 Answers

The folder is under C:\Users\YOU\AndroidStudioProjects\PROJECTNAME

You should be able to work on it on any computer with android studio installed.

No such thing as a stupid question. Thanks for asking!

like image 121
Noah Gary Avatar answered Sep 19 '22 21:09

Noah Gary


Copy the project directory from source to destination machine. Then follow the steps.

  1. Open Android Studio
  2. Go to File - > Open
  3. Browse to the project location.
  4. Select build.gradle and open.

Android Studio will automatically make the necessary changes for the target machine and set up the project.

NOTE : It usually confuses the first timers, as after copying project files into target machine, when you try to open the project, it considers it as a normal directory, not as android project.

like image 25
Biswajit Avatar answered Sep 22 '22 21:09

Biswajit