How to dynamically call Classes via DexClassLoader in ANdroid

158 Views Asked by At

My app is called MyNiceApp. MyNiceApp is mostly just a core that loads a CORE view which gets populated by other plugins which the user downloads as wishes. I'm thinking that Android will install MyNiceApp in a folder called MyNiceApp, just as linux would default to opt/MyNiceApp or Windows to Program Files/MyNiceApp. I'm thinking it would be better organized if I had a folder created under MyNiceApp/plugins, then have DexClassLoader crawl MyNiceApp/plugins for downloaded plugins, then I could call my Class implementations, and dynamically load the plugin views to the core view at runtime.

QUESTIONS

  1. How can I create this folder (MyNiceApp/plugins) when the app gets installed,
  2. How can DexClassLoader be pointed to MyNiceApp/plugins folder,
  3. Is this the best approach for this type of situation
0

There are 0 best solutions below