diff options
author | Ying Wang <wangying@google.com> | 2014-08-05 14:40:52 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2014-08-05 14:40:52 -0700 |
commit | bb09c25c87ed267359bf17e0c8aba47be8a398a7 (patch) | |
tree | b8cc92d304d9fca2b91920769daa3d9e66fb10ee /current/support/v7 | |
parent | 5eb83538d7f7ee4c8cfbb578bd5c3a797f007fca (diff) | |
download | prebuilts_sdk-bb09c25c87ed267359bf17e0c8aba47be8a398a7.zip prebuilts_sdk-bb09c25c87ed267359bf17e0c8aba47be8a398a7.tar.gz prebuilts_sdk-bb09c25c87ed267359bf17e0c8aba47be8a398a7.tar.bz2 |
Drop SDK as of LRW36 #1327997
Change-Id: I1e4fa4e186ee183aa941d6cb9f39fe0e97fcbddc
Diffstat (limited to 'current/support/v7')
18 files changed, 164 insertions, 50 deletions
diff --git a/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar b/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar Binary files differindex 99478f9..a16ee49 100644 --- a/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar +++ b/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar diff --git a/current/support/v7/appcompat/res/layout-v11/abc_screen_simple.xml b/current/support/v7/appcompat/res/layout-v11/abc_screen_simple.xml index 806d1f1..9fee5d8 100644 --- a/current/support/v7/appcompat/res/layout-v11/abc_screen_simple.xml +++ b/current/support/v7/appcompat/res/layout-v11/abc_screen_simple.xml @@ -19,8 +19,16 @@ android:id="@+id/action_bar_root" android:layout_width="match_parent" android:layout_height="match_parent" + android:orientation="vertical" android:fitsSystemWindows="true"> + <ViewStub + android:id="@+id/action_mode_bar_stub" + android:inflatedId="@+id/action_mode_bar" + android:layout="@layout/abc_action_mode_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + <android.support.v7.internal.widget.ContentFrameLayout android:id="@id/action_bar_activity_content" android:layout_width="match_parent" diff --git a/current/support/v7/appcompat/res/layout-v11/abc_screen_toolbar.xml b/current/support/v7/appcompat/res/layout-v11/abc_screen_toolbar.xml index 158bfbe..027a724 100644 --- a/current/support/v7/appcompat/res/layout-v11/abc_screen_toolbar.xml +++ b/current/support/v7/appcompat/res/layout-v11/abc_screen_toolbar.xml @@ -21,6 +21,6 @@ android:layout_height="match_parent" android:fitsSystemWindows="true"> - <include layout="@layout/abc_screen_toolbar_include" /> + <!-- @layout/abc_screen_toolbar_include will be inflated and merged in code --> </android.support.v7.internal.widget.NativeActionModeAwareLayout> diff --git a/current/support/v7/appcompat/res/layout/abc_screen_simple.xml b/current/support/v7/appcompat/res/layout/abc_screen_simple.xml index 8539fb5..0b8bcfd 100644 --- a/current/support/v7/appcompat/res/layout/abc_screen_simple.xml +++ b/current/support/v7/appcompat/res/layout/abc_screen_simple.xml @@ -14,14 +14,20 @@ limitations under the License. --> -<LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/action_bar_root" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:fitsSystemWindows="true"> + <ViewStub + android:id="@+id/action_mode_bar_stub" + android:inflatedId="@+id/action_mode_bar" + android:layout="@layout/abc_action_mode_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + <android.support.v7.internal.widget.ContentFrameLayout android:id="@id/action_bar_activity_content" android:layout_width="match_parent" diff --git a/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml b/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml index 72c7f6a..ef4c8d7 100644 --- a/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml +++ b/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml @@ -18,12 +18,13 @@ This is an optimized layout for a screen with a toolbar enabled. --> -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical" - android:fitsSystemWindows="true"> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/action_bar_root" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:fitsSystemWindows="true"> - <include layout="@layout/abc_screen_toolbar_include" /> + <!-- @layout/abc_screen_toolbar_include will be inflated and merged in code --> -</FrameLayout> +</LinearLayout> diff --git a/current/support/v7/appcompat/res/layout/abc_screen_toolbar_include.xml b/current/support/v7/appcompat/res/layout/abc_screen_toolbar_include.xml index 7b27664..6893bd7 100644 --- a/current/support/v7/appcompat/res/layout/abc_screen_toolbar_include.xml +++ b/current/support/v7/appcompat/res/layout/abc_screen_toolbar_include.xml @@ -20,9 +20,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/decor_content_parent" android:layout_width="match_parent" - android:layout_height="match_parent" - android:splitMotionEvents="false" - android:theme="?attr/actionBarTheme"> + android:layout_height="match_parent"> <android.support.v7.internal.widget.ContentFrameLayout android:id="@id/action_bar_activity_content" diff --git a/current/support/v7/appcompat/res/values-v21/styles_base.xml b/current/support/v7/appcompat/res/values-v21/styles_base.xml index db979f1..4f78a36 100644 --- a/current/support/v7/appcompat/res/values-v21/styles_base.xml +++ b/current/support/v7/appcompat/res/values-v21/styles_base.xml @@ -30,10 +30,6 @@ parent="android:Widget.Material.Light.ActionBar.TabView"> </style> - <style name="Base.Widget.AppCompat.Light.ActionBar.TabView.Inverse" - parent="android:Widget.Material.Light.ActionBar.TabView"> - </style> - <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText"> </style> diff --git a/current/support/v7/appcompat/res/values-v21/themes_base.xml b/current/support/v7/appcompat/res/values-v21/themes_base.xml index 1c00649..e9a4bdf 100644 --- a/current/support/v7/appcompat/res/values-v21/themes_base.xml +++ b/current/support/v7/appcompat/res/values-v21/themes_base.xml @@ -167,4 +167,29 @@ <item name="android:colorButtonNormal">?attr/colorButtonNormal</item> </style> + <style name="Base.ThemeOverlay.AppCompat" parent="android:ThemeOverlay.Material"> + <item name="colorControlNormal">?android:attr/colorControlNormal</item> + <item name="colorControlHighlight">?android:attr/colorControlHighlight</item> + </style> + + <style name="Base.ThemeOverlay.AppCompat.Dark" parent="android:ThemeOverlay.Material.Dark"> + <item name="colorControlNormal">?android:attr/colorControlNormal</item> + <item name="colorControlHighlight">?android:attr/colorControlHighlight</item> + </style> + + <style name="Base.ThemeOverlay.AppCompat.Light" parent="android:ThemeOverlay.Material.Light"> + <item name="colorControlNormal">?android:attr/colorControlNormal</item> + <item name="colorControlHighlight">?android:attr/colorControlHighlight</item> + </style> + + <style name="Base.ThemeOverlay.AppCompat.ActionBar" parent="android:ThemeOverlay.Material.ActionBar"> + <item name="colorControlNormal">?android:attr/colorControlNormal</item> + <item name="colorControlHighlight">?android:attr/colorControlHighlight</item> + </style> + + <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar" parent="android:ThemeOverlay.Material.Dark.ActionBar"> + <item name="colorControlNormal">?android:attr/colorControlNormal</item> + <item name="colorControlHighlight">?android:attr/colorControlHighlight</item> + </style> + </resources> diff --git a/current/support/v7/appcompat/res/values/attrs.xml b/current/support/v7/appcompat/res/values/attrs.xml index 29b9b54..46feecb 100644 --- a/current/support/v7/appcompat/res/values/attrs.xml +++ b/current/support/v7/appcompat/res/values/attrs.xml @@ -65,6 +65,7 @@ or a fraction of the screen size in that dimension. --> <attr name="windowFixedHeightMajor" format="dimension|fraction" /> + <attr name="android:windowIsFloating" /> <!-- =================== --> <!-- Action bar styles --> @@ -371,6 +372,9 @@ <attr name="contentInsetRight" format="dimension"/> <!-- Elevation for the action bar itself --> <attr name="elevation" format="dimension" /> + <!-- Reference to a theme that should be used to inflate popups + shown by widgets in the action bar. --> + <attr name="popupTheme" format="reference" /> </declare-styleable> <!-- Valid LayoutParams for views placed in the action bar as custom views. --> @@ -703,6 +707,9 @@ <flag name="bottom" value="0x50" /> </attr> <attr name="collapseIcon" format="reference" /> + <!-- Reference to a theme that should be used to inflate popups + shown by widgets in the toolbar. --> + <attr name="popupTheme" /> </declare-styleable> <declare-styleable name="PopupWindowBackgroundState"> diff --git a/current/support/v7/appcompat/res/values/styles.xml b/current/support/v7/appcompat/res/values/styles.xml index 9ba5b24..b2b79c0 100644 --- a/current/support/v7/appcompat/res/values/styles.xml +++ b/current/support/v7/appcompat/res/values/styles.xml @@ -34,10 +34,6 @@ parent="Base.Widget.AppCompat.Light.ActionBar.Solid"> </style> - <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse" - parent="Base.Widget.AppCompat.Light.ActionBar.Solid.Inverse"> - </style> - <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"> </style> @@ -93,10 +89,6 @@ parent="Base.Widget.AppCompat.Light.ActionBar.TabBar"> </style> - <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse" - parent="Base.Widget.AppCompat.Light.ActionBar.TabBar.Inverse"> - </style> - <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView"> </style> @@ -105,10 +97,6 @@ parent="Base.Widget.AppCompat.Light.ActionBar.TabView"> </style> - <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse" - parent="Base.Widget.AppCompat.Light.ActionBar.TabView.Inverse"> - </style> - <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText"> </style> @@ -319,4 +307,14 @@ <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse" /> + + <!-- + The following themes are deprecated and now resolve to their parent. + --> + <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse" /> + + <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse" /> + + <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse" /> + </resources> diff --git a/current/support/v7/appcompat/res/values/styles_base.xml b/current/support/v7/appcompat/res/values/styles_base.xml index 8578950..bd13d79 100644 --- a/current/support/v7/appcompat/res/values/styles_base.xml +++ b/current/support/v7/appcompat/res/values/styles_base.xml @@ -41,7 +41,8 @@ <item name="indeterminateProgressStyle">@style/Widget.AppCompat.ProgressBar</item> <item name="android:gravity">center_vertical</item> - + <item name="elevation">8dp</item> + <item name="popupTheme">?attr/actionBarPopupTheme</item> </style> <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar"> @@ -61,11 +62,6 @@ <item name="backgroundSplit">?attr/colorPrimary</item> </style> - <style name="Base.Widget.AppCompat.Light.ActionBar.Solid.Inverse"> - <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse</item> - <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse</item> - </style> - <style name="Base.Widget.AppCompat.ActionButton" parent=""> <item name="android:background">?attr/actionBarItemBackground</item> <item name="android:paddingLeft">12dip</item> @@ -107,10 +103,6 @@ parent="Base.Widget.AppCompat.ActionBar.TabBar"> </style> - <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar.Inverse" - parent="Base.Widget.AppCompat.Light.ActionBar.TabBar"> - </style> - <style name="Base.Widget.AppCompat.ActionBar.TabView" parent=""> <item name="android:background">@drawable/abc_tab_indicator_material</item> <item name="android:gravity">center_horizontal</item> @@ -125,12 +117,9 @@ parent="Base.Widget.AppCompat.ActionBar.TabView"> </style> - <style name="Base.Widget.AppCompat.Light.ActionBar.TabView.Inverse" - parent="Base.Widget.AppCompat.Light.ActionBar.TabView"> - </style> - <style name="Base.Widget.AppCompat.ActionBar.TabText" parent=""> <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item> + <item name="android:textColor">?android:attr/textColorPrimary</item> <item name="android:textSize">12sp</item> <item name="android:textStyle">bold</item> <item name="android:ellipsize">marquee</item> diff --git a/current/support/v7/appcompat/res/values/themes.xml b/current/support/v7/appcompat/res/values/themes.xml index 64662a7..9817bff 100644 --- a/current/support/v7/appcompat/res/values/themes.xml +++ b/current/support/v7/appcompat/res/values/themes.xml @@ -63,4 +63,23 @@ parent="Base.Theme.AppCompat.CompactMenu"> </style> + <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat" /> + + <!-- Theme overlay that replaces colors with their light versions but preserves + the value of colorAccent, colorPrimary and its variants. --> + <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light" /> + + <!-- Theme overlay that replaces colors with their dark versions but preserves + the value of colorAccent, colorPrimary and its variants. --> + <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark" /> + + <!-- Theme overlay that replaces the normal control color, which by default is the same as the + secondary text color, with the primary text color. --> + <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar" /> + + <!-- Theme overlay that replaces colors with their dark versions and replaces the normal + control color, which by default is the same as the secondary text color, with the primary + text color. --> + <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar" /> + </resources> diff --git a/current/support/v7/appcompat/res/values/themes_base.xml b/current/support/v7/appcompat/res/values/themes_base.xml index d9aa665..df81dab 100644 --- a/current/support/v7/appcompat/res/values/themes_base.xml +++ b/current/support/v7/appcompat/res/values/themes_base.xml @@ -134,6 +134,7 @@ <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item> <item name="actionBarSplitStyle">?attr/actionBarStyle</item> <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item> <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item> <item name="actionBarDivider">?attr/dividerVertical</item> <item name="actionBarItemBackground">?attr/selectableItemBackground</item> @@ -228,6 +229,7 @@ <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item> <item name="actionBarSplitStyle">?attr/actionBarStyle</item> <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item> <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item> <item name="actionBarDivider">?attr/dividerVertical</item> <item name="actionBarItemBackground">?attr/selectableItemBackground</item> @@ -308,15 +310,11 @@ <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material_dark</item> <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item> - <item name="actionBarPopupTheme">@style/Theme.AppCompat.Light</item> - <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse</item> - <item name="actionBarWidgetTheme">@style/Theme.AppCompat</item> + <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item> + <item name="actionBarWidgetTheme">@null</item> + <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark</item> <item name="actionBarDivider">@drawable/abc_list_divider_holo_dark</item> <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item> - <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView.Inverse</item> - <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse</item> - <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText.Inverse</item> - <item name="actionMenuTextColor">?android:attr/textColorPrimaryInverseDisableOnly</item> <!-- Action Mode --> <item name="actionModeStyle">@style/Widget.AppCompat.Light.ActionMode.Inverse</item> @@ -337,6 +335,9 @@ <!-- Panel attributes --> <item name="android:panelBackground">@drawable/abc_menu_hardkey_panel_holo_dark</item> <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item> + + <item name="colorPrimaryDark">@color/material_blue_grey_900</item> + <item name="colorPrimary">@color/material_blue_grey_800</item> </style> <!-- Menu/item attributes --> @@ -368,4 +369,70 @@ <style name="Base.Theme.AppCompat.Dialog.Light.FixedSize" parent="Base.Theme.AppCompat.Dialog.FixedSize" /> + <!-- Overlay themes --> + <style name="Base.ThemeOverlay.AppCompat" parent="" /> + + <style name="Base.ThemeOverlay.AppCompat.Light"> + <item name="android:colorForeground">@color/bright_foreground_material_light</item> + <item name="android:colorForegroundInverse">@color/bright_foreground_material_dark</item> + <item name="android:colorBackground">@color/background_material_light</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item> + + <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item> + <item name="android:textColorSecondary">@color/secondary_text_material_light</item> + <item name="android:textColorSecondaryInverse">@color/secondary_text_material_dark</item> + <item name="android:textColorTertiary">@color/tertiary_text_material_light</item> + <item name="android:textColorTertiaryInverse">@color/tertiary_text_material_dark</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item> + <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorHint">@color/hint_foreground_material_light</item> + <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_light</item> + <item name="android:textColorLink">@color/material_teal_500</item> + + <item name="android:windowBackground">@color/background_material_light</item> + + <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlHighlight">@color/ripple_material_light</item> + <!--<item name="colorButtonNormal">@color/btn_default_material_light</item>--> + </style> + + <style name="Base.ThemeOverlay.AppCompat.Dark"> + <item name="android:colorForeground">@color/bright_foreground_material_dark</item> + <item name="android:colorForegroundInverse">@color/bright_foreground_material_light</item> + <item name="android:colorBackground">@color/background_material_dark</item> + <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item> + + <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item> + <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item> + <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item> + <item name="android:textColorSecondary">@color/secondary_text_material_dark</item> + <item name="android:textColorSecondaryInverse">@color/secondary_text_material_light</item> + <item name="android:textColorTertiary">@color/tertiary_text_material_dark</item> + <item name="android:textColorTertiaryInverse">@color/tertiary_text_material_light</item> + <item name="android:textColorHint">@color/hint_foreground_material_dark</item> + <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item> + <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item> + <item name="android:textColorLink">@color/material_teal_500</item> + + <item name="android:windowBackground">@color/background_material_dark</item> + + <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item> + + <item name="colorControlNormal">?android:attr/textColorSecondary</item> + <item name="colorControlHighlight">@color/ripple_material_dark</item> + <!--<item name="colorButtonNormal">@color/btn_default_material_dark</item>--> + </style> + + <style name="Base.ThemeOverlay.AppCompat.ActionBar"> + <item name="colorControlNormal">?android:attr/textColorPrimary</item> + </style> + + <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar"> + <item name="colorControlNormal">?android:attr/textColorPrimary</item> + </style> + </resources> diff --git a/current/support/v7/cardview/libs/android-support-v7-cardview.jar b/current/support/v7/cardview/libs/android-support-v7-cardview.jar Binary files differindex 3ed2612..b984a49 100644 --- a/current/support/v7/cardview/libs/android-support-v7-cardview.jar +++ b/current/support/v7/cardview/libs/android-support-v7-cardview.jar diff --git a/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar b/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar Binary files differindex 9a46d31..00c0de8 100644 --- a/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar +++ b/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar diff --git a/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar b/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar Binary files differindex bef4c09..6ba931b 100644 --- a/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar +++ b/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar diff --git a/current/support/v7/palette/libs/android-support-v7-palette.jar b/current/support/v7/palette/libs/android-support-v7-palette.jar Binary files differindex f579922..06c7a6a 100644 --- a/current/support/v7/palette/libs/android-support-v7-palette.jar +++ b/current/support/v7/palette/libs/android-support-v7-palette.jar diff --git a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar Binary files differindex 2154e93..26423dc 100644 --- a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar +++ b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar |