How to transfer a project from android studio to android studio

I have a project created in Android Studio (version 1.2). I want to transfer the project in Android Studio (version 1.2.1.1) to another laptop.

What is the best way to do this?

+1
source share
3 answers

Just copy the project folder from .../AndroidStudioProjectsand paste it into the folder .../AndroidStudioProjectson your target laptop.

All project files are contained there.

0
source

If you transfer your project from a lower version to a higher version from Android Studio, it will automatically configure your project according to the new version.

This thing is called version compatibility.

+2

You can use the standard process ... create a free repository in Github (public viewable) or BitBucket, export the project there ... then import the project on another computing platform.

Not a bad idea in general .. use the version control system even for personal development.

0
source

Source: https://habr.com/ru/post/1623937/


All Articles