nativescript 创建 2 个应用程序而不是 1 个

nativescript create 2 apps instead of 1

所以当我 运行: ../../latest-cli/nativescript-cli/bin/tns livesync android --watch

该应用程序创建 2 个图标(2 个应用程序)。 第一个有效,第二个给出错误(cannot load module app/main.js)。

这是什么原因造成的?我需要工作的。

谢谢!

确保您的AndroidManifest.xml中没有两个

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

如果是这样,您可以将其中之一更改为

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>