Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

projectFilesBackup folder in android studio project for latest version

If we update the android studio with the latest version and update the plugin as well. A folder named projectFilesBackup created when we open our old android studio project in the latest android studio version.

My Question is why this folder created, why this is for and how long we should keep this folder in our project folder?

like image 467
0xAliHn Avatar asked Nov 08 '16 12:11

0xAliHn


People also ask

Where is the project directory in Android Studio?

Android Studio stores the projects by default in the home folder of the user under AndroidStudioProjects. The main directory contains configuration files for Android Studio and the Gradle build files. The application relevant files are contained in the app folder.

Which folder contains the Android project Java files?

The src folder holds two most important folders on any Android project, namely, androidTest and main. The androidTest package is created to hold Test cases for testing the application code and running. This folder contains . java (JAVA) files.

How do I change the gradle path in Android Studio?

To change its path go to this path File > Settings... > Build, Execution, Deployment > Gradle In the Global Gradle settings Change Service directory path to what you want. Save this answer.


1 Answers

When you accepted to continue in the Convert Project dialog, IntelliJ created this file.

IntelliJ IDEA will back up old versions of project files to projectFilesBackUp folder within your project, so you could easily return to the old project version by replacing the project files with the old ones.

If the project is working correctly, you can delete the file.

https://www.jetbrains.com/help/idea/2016.2/convert-project-dialog.html

like image 184
sorianiv Avatar answered Oct 17 '22 05:10

sorianiv