I've tried my best to apply Material Design for Android SDK lower than 21, but I failed.
I downloaded appcompat-v7
, added it to my maven file as:
<dependency>
<groupId>com.android.support</groupId>
<artifactId>appcompat-v7</artifactId>
<version>21.0.0</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>appcompat-v7</artifactId>
<version>21.0.0</version>
<type>jar</type>
</dependency>
But Material Design is still unavailable. Is there any tutorial on how to do it? I want to make an application similar to Gmail version 5, but the SDK forces me to change API level to 21.
I'm only interested in layout. I do not want to use any other SDK 21 features. I'm using IntelliJ Idea and Maven. My target API level is 17