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
- How can I create this folder (MyNiceApp/plugins) when the app gets installed,
- How can DexClassLoader be pointed to MyNiceApp/plugins folder,
- Is this the best approach for this type of situation