The hierarchy of the type activity is inconsistent when extending ActionBarActivity

12,989

Solution 1

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

Solution 2

I run in exactly the same issue and find thanks to tyczj a better solution, I think. If you have correctly setup the v7 library: http://developer.android.com/tools/support-library/setup.html#add-library You should NOT need to add again the v4 since it is included in v7 folder.

(Since you add the new v4 to solve your problem, I suppose you did not really use the one from v7 because in the v7 it IS the new one)

My post: If I use new " V7 Appcompat library ", do I still need " V4 Support Library " for a minimum SDK = 7?

Share:
12,989
Seifolahi
Author by

Seifolahi

Updated on July 23, 2022

Comments

  • Seifolahi
    Seifolahi almost 2 years

    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?

  • Seifolahi
    Seifolahi almost 11 years
    problems solved thank you. I should have imported it as a Eclipse library
  • Amir Uval
    Amir Uval over 10 years
    actually v4 should not be a part of the main project, but a part of the v7 user library
  • Sri
    Sri over 10 years
    I was working on Unity development and had the same error. The problem for me was due to min SDK version. Unity requires minimum 2.3.1 and I set up the whole thing for 1.6!