I have a class myClass : UnityPlayerActivity() which derives from UnityPlayerActivity. This class is generated as following (and I'd rather not alter it)
public class UnityPlayerActivity extends Activity implements IUnityPlayerLifecycleEvents
I now need to call getSupportedFragmentManager but this is unavailable from a class which does not derive from AppCompatActivity. So I was wondering If I could someway get the SupportFragmentManager without changing the Unity generated class.