I use this Library project: https://github.com/JakeWharton/Android-ViewPagerIndicator In order to make it work in my project, I've created a new project based on the source code provided by the git and added a Reference to it in my Final project. Everything works fine. I use it in my Final project like:
<com.viewpagerindicator.TitlePageIndicator
android:id="@+id/indicator"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
I'd like to avoid this Library project reference and use a simple jar in my Final project. I've taken the jar generated in my library project and added in Final project in Java Build Path. When I run it I get an error:
12-09 10:57:34.714: E/AndroidRuntime(10492): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.test/com.test.SettingsActivity}: android.view.InflateException: Binary XML file line #7: Error inflating class com.viewpagerindicator.TitlePageIndicator
Is it possible to achieve what I want ?