From dc1f7aeb66ab32f7c7a694ea2568dc929f6565a1 Mon Sep 17 00:00:00 2001 From: sigmabeta Date: Thu, 6 Aug 2015 08:26:31 -0400 Subject: [PATCH 1/2] Android: Include newer versions of support libraries, which contain bugfixes --- Source/Android/app/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Android/app/build.gradle b/Source/Android/app/build.gradle index 9668d8af95..62588307e0 100644 --- a/Source/Android/app/build.gradle +++ b/Source/Android/app/build.gradle @@ -76,13 +76,13 @@ android { } dependencies { - compile 'com.android.support:support-v13:22.2.0' - compile 'com.android.support:cardview-v7:22.2.0' - compile 'com.android.support:recyclerview-v7:22.2.0' - compile 'com.android.support:design:22.2.0' + compile 'com.android.support:support-v13:22.2.1' + compile 'com.android.support:cardview-v7:22.2.1' + compile 'com.android.support:recyclerview-v7:22.2.1' + compile 'com.android.support:design:22.2.1' // Android TV UI libraries. - compile 'com.android.support:leanback-v17:22.2.0' + compile 'com.android.support:leanback-v17:22.2.1' // For showing the banner as a circle a-la Material Design Guidelines compile 'de.hdodenhof:circleimageview:1.2.2' From 6d6cb12b15df7f2c80cd1c79e033c05a20fd9d82 Mon Sep 17 00:00:00 2001 From: sigmabeta Date: Thu, 6 Aug 2015 08:34:21 -0400 Subject: [PATCH 2/2] Android: Remove "fitSystemWindows" flag from MainActivity layout --- Source/Android/app/src/main/res/layout/activity_main.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Android/app/src/main/res/layout/activity_main.xml b/Source/Android/app/src/main/res/layout/activity_main.xml index 53d4de6e72..845ff24b45 100644 --- a/Source/Android/app/src/main/res/layout/activity_main.xml +++ b/Source/Android/app/src/main/res/layout/activity_main.xml @@ -3,8 +3,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/coordinator_main" android:layout_width="match_parent" - android:layout_height="match_parent" - android:fitsSystemWindows="true"> + android:layout_height="match_parent">