android - How to temporarily stop Crashlytics from auto-generating its files -
i attempting merge several branches within svn project in eclipse juno, crashlytics 1.1.0 integrated. however, eclipse telling me need clean workspace so. crashlytics likes regenerate com_crashlytics_export_strings.xml
file, preventing me maintaining clean workspace.
how can temporarily disable crashlytics can merge branches , reenable plugin?
- i've read did not help: temporarily disable eclipse plugin
- i've removed
crashlytics.start()
call in main activity - i've tried "logging out" of plugin referenced here
- i've tried turning off "build automatically" project menu
but these steps plugin still regenerates file immediately. please help.
i have had same issue when merging branches crashlytics implemented.
i found out accidentally commited com_crashlytics_export_strings.xml (res/values/) svn repository.
my quick fix delete com_crashlytics_export_strings.xml file svn repository (as did not incorporate file svn:ignore right now).
how did it:
- delete com_crashlytics_export_strings.xml trunk project in eclipse.
- commit change (deleted com_crashlytics_export_strings.xml file) repository.
now, should able merge feature branch trunk without issues, svn repository won't have different com_crashlytics_export_strings.xml file conflict with.
Comments
Post a Comment