I use Android Studio and after this article from Google , as well as some other articles discussing how to use the new ActionBarCompat.
I downloaded the support library (Rev. 18) in the Android SDK Manager and added the following to my build.gradle
dependencies { compile 'com.android.support:support-v4:18.0.0' compile 'com.android.support:appcompat-v7:18.0.0' }
Now I'm trying to import the support library API and extend the ActionBarActivity in my code, however, this is what seemed


which is not what is supposed
import android.support.v7.app.ActionBar; import android.support.v7.app.ActionBarActivity;
Any help?
source share