gilgoldzweig / Gencycler

Gencycler is the fastest way to write RecyclerView adapters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for additional/irregular adapters

gilgoldzweig opened this issue · comments

Currently, the processer generator generates the adapter with the GencyclerRecyclerAdapter which adds many benefits to the class.

I want to allow the generated code to work with other types of adapters like PagingDataAdapter or any other class that the users want.

Possible issues:

  • Understanding what we need to generate for each adapter.
  • Allow using classes with possible unknown functions.
  • Supporting different constructor parameters.

If anyone has any suggestions on a smart way to achieve it please share them with me.