Erreur d'analyse XML: unbound préfixe de la bibliothèque

Je suis à l'aide de trois bibliothèques dans mon projet:

a. ViewPager
b. SherlockActionBar
c. PagerSlidingTabStrip

Dans ma mise en page xml, je reçois le suivant error parsing XML ici:

<com.astuetz.viewpager.extensions.PagerSlidingTabStrip
    android:id="@+id/strips"
    android:layout_width="match_parent"
    android:layout_height="48dip"
    app:indicatorColor="#FF9326"
    app:textAllCaps="false" />

J'ai mis en place la bibliothèque de même que les deux autres bibliothèques utilisées dans le projet. Les deux autres bibliothèques sont en cours d'exécution en douceur. L'erreur n'existe que dans le présent. S'il vous plaît aider.

De mise en page complète xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainSlider" >

    <com.astuetz.viewpager.extensions.PagerSlidingTabStrip
        android:id="@+id/strips"
        android:layout_width="match_parent"
        android:layout_height="48dip"
        app:indicatorColor="#FF9326"
        app:textAllCaps="false" />

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

</LinearLayout>

J'ai déjà essayé de nettoyer le projet, re-ajout de la bibliothèque de l'espace de travail, etc.

OriginalL'auteur Rakeeb Rajbhandari | 2013-09-18