是否可以在单个项目中调用更多包,而不在模拟器/手机中安装其他包,想要单个 apk 文件..我保留了这个代码......但是当包在模拟器/手机中可用时是可能的..请建议我...如果模拟器/手机中没有该软件包
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName(
"com.abc.def.packname",
"com.abc.def.packname.MyActivity"));
startActivity(intent);