android.content.ActivityNotFoundException: Unable to find explicit activity class {com.myapp.videomodule/com.myapp.videomodule.VideoCallActivity}; have you declared this activity in your AndroidManifest.xml?
My app package is com.myapp.doctors module package is com.myapp.videomodule
if(splitInstallManager.getInstalledModules().contains("videomodule")){
Intent intent = new Intent();
intent.setClassName("com.myapp.videomodule", "com.myapp.videomodule.VideoCallActivity");
startActivity(intent);
}
I have declared it in the manifest the thing is I am trying dymanic module delivery, so that videoactivity is in other module
Try starting the intent like this: