我有一个应用程序,如果用户没有所需的硬件,则该应用程序需要能够“还原”到较旧的规定版本,因此我在项目中拥有新的Application as App模块,而较旧的secondAppModule作为同一项目中的另一个模块
我正在尝试通过意图启动secondAppModule
window.onpageshow = function() {
if (typeof window.performance != "undefined"
&& window.performance.navigation.type === 0) {
$('#myModal').modal('show');
}
}
并将其作为依赖项添加到Intent intent = new Intent(HomeActivity.this, HomeActivity_old.class);
startActivity(intent);
finish();
(模块:App)
build.gradle
但是遇到了我无法摆脱的这些错误
implementation project(':secondAppModule')
为什么这个错误不会消失?谢谢