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

时间:2016-07-19 18:11:59

标签: javascript android nativescript tns

所以当我跑步时:../../latest-cli/nativescript-cli/bin/tns livesync android --watch

该应用创建2个图标(2个应用)。 第一个起作用,第二个起错(cannot load module app/main.js)。

有什么可以做到的?我需要工作。

谢谢!

1 个答案:

答案 0 :(得分:1)

在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>