21

In my code I import android.support.v4.view.ViewPager but I get a ClassNotFoundException: android.support.v4.view.ViewPager when I set content view to this xml file:

...
 <android.support.v4.app.FragmentPager 
     android:layout_height="0px" 
     android:layout_width="match_parent" 
     android:layout_weight="1" 
     android:id="@+id/pager"> 
     </android.support.v4.app.FragmentPager>
...
Ron
  • 24,175
  • 8
  • 56
  • 97
user1324936
  • 2,187
  • 4
  • 36
  • 49

7 Answers7

41

You have to add compatibility library by right clicking your project and selecting Android Tools -> Add Compatibility Library. Once its added, clean your project and build again.


enter image description here

waqaslam
  • 67,549
  • 16
  • 165
  • 178
  • In my project this resolved issues with missing android.support.v4 library, but I still miss android.support.v13 library! – Piro Jan 18 '17 at 09:21
33

i'm using Android Studio Beta 0.8.6 and i had to do it this way


File -> Project Structure enter image description here

Mina Gabriel
  • 23,150
  • 26
  • 96
  • 124
4

Go to <Your android apk folder>\sdk\extras\android\support\v4 folder and add android-support-v4.jar to app library (or whole sdk library).

ITurchenko
  • 1,828
  • 2
  • 17
  • 24
3

Add Support library by right clicking your project and selecting Android Tools -> Add Compatibility Library. After adding Support Library clean your project and Go to Java Build Path, Go to Order and Export [Last tab] click all currently added Jar files and libraries..press Ok and refresh your Project.. It works fine for me..

Anil Chahal
  • 2,544
  • 2
  • 22
  • 19
1

You should add android.support.v4 jar to your app.

Alex Klimashevsky
  • 2,457
  • 3
  • 26
  • 58
0

If it is not gradle based then You should Migrate Eclipse ADT based project to Gradle based.. Import Project into android studio..

0

I had this problem please right click on your project and click Android Tools and now click Support Libraries and then Accept License Now Run your Project It will Work :D

RightClick==>Android Tools==>Support Libraries ==>Accept License

Edward
  • 1