astuetz / PagerSlidingTabStrip

An interactive indicator to navigate between the different pages of a ViewPager
139 stars 44 forks source link

No resource found #142

Open ryanpalado opened 9 years ago

ryanpalado commented 9 years ago

Im using your library on gradle, Heres the error when executing the app Error:(7) No resource identifier found for attribute 'pstsTabSwitch' in package 'package_name'

Error:(7) No resource identifier found for attribute 'pstsActivateTextColor' in package 'package_name'

Error:(7) No resource identifier found for attribute 'pstsDeactivateTextColor' in package 'package_name'

SanthoshDhandapani commented 9 years ago

I faced the same issue and got resolved. Check if the compile 'com.astuetz:pagerslidingtabstrip:1.0.1' is given in your build file. If it is there remove it and give as compile project("your customized library project path") in your build file. Make sure that you have made all the changes in your library project as mentioned by https://github.com/astuetz/PagerSlidingTabStrip/pull/62/files

Example : In my case i have specified as compile project(':external-libs:PagerSlidingTabStripLibrary') in my build file where external-libs is one of a directory in my project.