The hierarchy of the type activity is inconsistent when extending ActionBarActivity

android, android-actionbar-compat, android-support-library

Solution

you should use new support v4 library that just has been released in sdk v18

Problem

Hi I've got new v7 support library with appcompat actionbar and when I want to extend from ActionBarActivity as documented here, eclipse show me this error ``` The hierarchy of the type testActivity is inconsistent ``` and when I move my courser on ActionBarActivity class it says ``` The type android.support.v4.app.TaskStackBuilder$SupportParentable cannot be resolved. It is indirectly referenced from required .class files ``` now how can I Solve this issue?

Original source

Related problems