I have an android application which needs to integrate to 2 EMM's (Good Dynamics & Microsoft Intune). Both sdks require my activities and other subclasses to derive from the subclasses (which ultimately derive from the native ones) defined in their sdk instead of the native ones. Since java does not allow multiple inheritance, how can I make my application integrate with both EMM's simultaneously?
I am ok with making separate apk's integrated with individual sdk's.