akoscz / YouTubePlaylist

A sample Android application which demonstrates the use of the YouTube Data v3 API.
Apache License 2.0
153 stars 84 forks source link

Updating outdated ActionBarActivity #11

Closed FleetAdmiral closed 8 years ago

FleetAdmiral commented 8 years ago

ActionBarActivity is deprecated , and hence has been replaced with AppCompatActivity.

akoscz commented 8 years ago

@FleetAdmiral Thanks for the contribution!

You forgot the import that goes along with your code change. Line #6 import android.support.v7.app.ActionBarActivity; --> import android.support.v7.app.AppCompatActivity;

FleetAdmiral commented 8 years ago

@akoscz Whoops , fixed it now.

akoscz commented 8 years ago

Thanks!