Reputation: 3770
I made the following steps on my project and on the appcompat_v7 library: right click > Android Tools > Add Support Library..
After that everything gone crazy.. I can't import the android.app.FragmentActivity library.
Here is my java build path:
And the Android tab:
Adding the android-support-v4.jar didn't help. Please help me!
Upvotes: 1
Views: 9546
Reputation: 3770
Fixed by changing android.app.FragmentActivity
to android.support.v4.app.FragmentActivity
and after that I did the steps from this answer.
Upvotes: 2
Reputation: 1006799
There is no android.app.FragmentActivity
. It is android.support.v4.app.FragmentActivity
.
Upvotes: 2