Android Studio会创建重复的应用

Leo*_*eon 3 android android-studio

当我运行我的项目进行测试时,Android Studio最终会在我的模拟器和手机上创建两个相同的应用程序.

这是为什么?

编辑:原因是因为PebbleKit创建了另一个应用程序.

小智 6

另一种可能性是,如果您有多个活动:

<intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
Run Code Online (Sandbox Code Playgroud)

在他们的两个清单文件中.这可以在应用程序抽屉中创建多个图标.