Implement first few screens of Android 5.0-based UI.

This commit is contained in:
Eder Bastos
2015-05-06 20:12:58 -04:00
parent 80fe5e0a55
commit b47835fc07
39 changed files with 1167 additions and 86 deletions

View File

@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "20.0.0"
buildToolsVersion "20.0.0"
lintOptions {
// This is important as it will run lint but not abort on error
@ -47,6 +47,14 @@ android {
dependencies {
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:support-v13:22.0.0'
compile 'com.android.support:support-v4:22.1.1'
compile 'com.android.support:support-v13:22.0.0'
compile 'com.android.support:cardview-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.3'
// For showing the banner as a circle a-la Material Design Guidelines
compile 'de.hdodenhof:circleimageview:1.2.2'
// For loading huge screenshots from the disk.
compile "com.squareup.picasso:picasso:2.4.0"
}