android - What goes into Source Control? -


given: http://developer.android.com/resources/faq/commontasks.html#filelist

  1. what best practices getting projects source control? ask because if right click on project, choose team, etc. end /bin & /gen folders, .classpath eclipse related items.
  2. if i'm inheriting project .../workspace/projectname et al. included how can clean include items relevant aforementioned url?

i summarized findings in blog post can found here: http://www.aydabtudev.com/2011/05/what-goes-into-source-control-android.html

i executed following commands within project folder them out of source control:

svn rm --keep-local .classpath svn rm --keep-local .project svn rm --keep-local default.properties svn rm --keep-local proguard.cfg svn rm --keep-local bin/ svn rm --keep-local gen/ 

then executed following command add them ignore list:

svn pe svn:ignore . 

add each item above without associated command so:

.classpath .project bin/ ... 

i followed commit , update solidify changes.

svn commit -q -m "removing files" . svn update 

it seem smarter way configure ignored resources under eclipse team preferences.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -