-1

I installed a new windows with a different username. I have my android studio project files saved, now i want to use the same project in android studio after i installed the new windows. by the way the app is already published in google play store.

Regards

3 Answers3

0

I've been able to simply copy the project directory to any location on the new computer and then open it as a project from within Studio.

lostScriptie
  • 347
  • 1
  • 3
  • 11
  • The project directory contains specific information about the previous file paths. It could get confused when importing – OneCricketeer Nov 18 '18 at 04:33
0

For the most part, the actual code doesn't care where it exists on the file system. And you can't easily get code from an app on Google Play

Assuming it's using Gradle, at a minimum, you need to only copy the app folder, build.gradle and settings.gradle.

Then you can open the build.gradle file in Android Studio, and it'll ask to import the whole thing as a project

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
0

I just copied the old SDK folder and it worked.