Default activity is ambiguous when bundling leak canary
Created by: joshzana
I am trying to integrate https://github.com/square/leakcanary into my app, but it declares its own launcher activity with intent filter
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
When I install with --run I get this BUILD FAILED: Default activity is ambiguous.
Using -a works, but is undesirable since the Android Studio plugin doesn't use it.
Any advice?