Search code examples
androidstaggered-gridview

Is it possible for Etsy's StaggeredGridview to work in API 9?


I am using Etsy's StaggeredGridview in my project. This library is supported from API 10+. But my project's minimum SDK version is 9.

However in their Github page, it is written that 'It could be modified to support older versions if required.'. But I dont know how to make it support for older versions.

Anyone have an idea on how to do this?

Update: Etsy's StaggeredGridView is deprecated. Please consider using RecyclerView with StaggeredGridLatoutManager.


Solution

  • Change value of minSdkVersion into manifest of library project to 9

    <uses-sdk android:minSdkVersion="10"/>
    

    with

    <uses-sdk android:minSdkVersion="9"/>