Which files should I add to SVN ignore for an Android Studio project?

前端 未结 3 1575
执笔经年
执笔经年 2020-12-13 13:24

In Eclipse, I had the custom of adding bin and gen directories to SVN ignore. But now, using Android Studio (based on IntelliJ IDEA), which files should I ignore?

3条回答
  •  萌比男神i
    2020-12-13 13:28

    I've used the following SVN ignore list sucessfully:

    .gradle
    local.properties
    .idea/workspace.xml
    .idea/libraries
    .DS_Store
    build
    

    The ignore should be applied recursively.

    Reference: Same question, for git

提交回复
热议问题