Having two or more library projects and a main project in Android Development

I added the johannilsson-android-actionbar project to the project as a library. It worked well and everything was fine for me. But lately, I added uitableView as a library and got this error:

/ - mypath - / actionbar / res / values ​​/attrs.xml: 19: error: The "tittle" attribute is already defined

And R is not known, so I cannot reference my XML. I have ADT 17 and Eclipse 3.7. I tried to remove the uitableview and the project is working fine, no errors and R is fine.

+5
source share
1 answer

Library authors should take measures to avoid collisions on resource identifiers. Your libraries apparently don't.

- johannilsson-android-actionbar ActionBarSherlock , .

0

All Articles