Reputation: 6839
When I open my android project I get a whole lot of material design errors. I think I changed a setting for material design accidently, how can I go back...
Upvotes: 0
Views: 163
Reputation: 30611
Go to your project settings and select the platform as Android 5.0 (API 21). In your manifest, change the targetSdkVersion
to "21". The new Appcompat-v22 needs all projects to be compiled against API 21.
Upvotes: 1