HelloCW
HelloCW

Reputation: 2255

Which files can I ignore when I backup a Android studio project by myself?

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!

enter image description here

enter image description here

Upvotes: 3

Views: 690

Answers (1)

sschrass
sschrass

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

Related Questions