dephinera
dephinera

Reputation: 3770

Android import android.app.FragmentActivity cannot be resolved

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: enter image description here

And the Android tab: enter image description here

Adding the android-support-v4.jar didn't help. Please help me!

Upvotes: 1

Views: 9546

Answers (2)

dephinera
dephinera

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

CommonsWare
CommonsWare

Reputation: 1006799

There is no android.app.FragmentActivity. It is android.support.v4.app.FragmentActivity.

Upvotes: 2

Related Questions