Reputation: 2255
I create a Android Studio project which is located in the folder E:\Android_Studio_Project\MessageCleanup
I hope to backup the project by myself.
I think that all files located in the folder E:\Android_Studio_Project\MessageCleanup\app\build\outputs\apk can be ignore, is it right?
And more, are there other files which can be ignored? Thanks!
Upvotes: 3
Views: 690
Reputation: 7166
you can ignore:
.gradle
.idea
app/build
build
local.properties
you could ignore
.gitignore (if you don't use git or dont want to exclude files from git)
The rest I would try to keep.
Upvotes: 5