is there possibility to use dynamic feature module or something similar without Google play? All files would be on my server.
Asked
Active
Viewed 490 times
1 Answers
0
You can technically, with reflection
/plugins
.
- Build an
API module
for your desired code. (Just of bunch of interfaces inmy_api.jar
- Import the
API module
on both your App and plugin(my_plugin.apk
or something). - Implement a
proxy
on your App of theAPI
. - Implement the
API
in your plugin. - App downloads the plugin from the server.
- App
reflects
the plugin onto theproxy
using the sharedAPI
. - Use the
proxy
to call functionality that didn't exist when the App was first downloaded.
It may not be the cleanest/best solution but it works.

avalerio
- 2,072
- 1
- 12
- 11