I am attempting to try out the new Material Theme in Android.
I am currently stuck with this exception
03-06 09:35:50.177: D/AndroidRuntime(30607): S
If you're using ActionBarActivity then you need to use the ThemeCompat styles. You can only use Theme.Material if you use "Activity" instead.
You CAN still use API 21 items like tinting and elevation natively, but in order to use the native material theme you must use the Activity class.
You can still use a Material UI style while using the AppCompat libraries, however: http://android-developers.blogspot.co.uk/2014/10/appcompat-v21-material-design-for-pre.html
You are attempting to use a feature (from the design library, for example) which was introduced after your target sdk. Therefore, you need to use a couple of libraries (design and appcompat), one of which is the AppCompat Theme (backwards app compatibility).
In your Manifest file, include in your application declaration
android:theme="@style/Theme.AppCompat"
Rebuild and your problem should be solved.