Which files to ignore using to commit to SVN in Android Studio

守給你的承諾、 提交于 2019-12-04 19:39:00

When you create an Android Studio project, .gitignore files will be also generated. Based on that, in the parent folder we exclude:

-.gradle
-/local.properties
-/.idea/workspace.xml
-.DS_Store

And in the modules directory:

-/build

Personally when I'm working on Android project I ignore the folder bin , project.property, classpath, settins/org.eclipse.jdt.core.pref , proguard-project.txt , local.properties .

I don't use Ant or Maven so maybe there are others files to ignore.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!