Search code examples
javaandroidlazy-loadingdalvikcglib

Alternatives to cglib for implementing Android lazy loading


I'm currently working on a framework for Android which includes an ORM. I'm planning on incorporating lazy loading into the ORM, which, outside of Android, can be achieved using the cglib bytecode-manipulation framework. However, since cglib is incompatible with Dalvik, I obviously cannot utilize it for this purpose.

What Android-compatible alternatives are there which can help me to implement lazy loading?


Solution

  • Take a look at dexmaker