Error: Application entry point file not found

Error: Application entry point file not found

我用这个 link https://blog.angular.io/apps-that-work-natively-on-the-web-and-mobile-9b26852495e7 创建了一个新的共享应用程序,它在浏览器上正确显示了网站。但是当我构建 apk 并安装在移动设备上时,它显示错误 "Application entry point file not found"

我遵循的命令:

ng new --collection=@nativescript/schematics --name=my-app --shared

cd 我的应用程序

tns 构建 android

---> 生成了 apk 文件,我试图在移动设备上 运行 但出现错误。

您需要 tns build android --bundle 命令,因为代码共享项目只能使用 --bundle 选项。