Kata00 Dependencies - mitchwongho/GDS-Material-Kata GitHub Wiki

Introduction

Material design elements are only introduced natively to Android Lollipop 🍭(5.x), so to extend the design principles to previous versions of Android, Google have released a set of support libraries.

Goal

The goal of this kata is to apply the necessary support libraries that provide Material design features. [Source reference]

Exercise

Add the following gradle dependencies to your app/build.gradle:

...
}

dependencies {
    ...
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.android.support:design:23.0.0'
    compile 'com.android.support:cardview-v7:23.0.0'
    compile 'com.android.support:gridlayout-v7:23.0.0'
    compile 'com.android.support:palette-v7:23.0.0'
    compile 'com.android.support:recyclerview-v7:23.0.0'
    compile 'com.android.support:percent:23.0.0'
    ...
}
...