What files can I ignore when I build an android studio project myself?

I am creating an Android Studio project which is located in the E: \ Android_Studio_Project \ MessageCleanup folder

I hope to back up the project myself.

I think all files that are in the E: \ Android_Studio_Project \ MessageCleanup \ app \ build \ output \ apk folder can be ignored, is that correct?

Also, are there any other files that can be ignored? Thank!

enter image description here

enter image description here

+3


source to share


1 answer


you can ignore:

.gradle
.idea
app/build
build
local.properties

      

you can ignore



.gitignore (if you don't use git or dont want to exclude files from git)

      

I'll try to keep the rest.

+5


source







All Articles