android - Replace launching activity with flavors -
is possible replace activity gets intent-filter
<intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter>
by configuring flavors?
yes, add manifest file in folder of product flavour ,
the manifest of product flavor merged on top of manifest of main configuration.
more info here: http://tools.android.com/tech-docs/new-build-system/build-system-concepts
Comments
Post a Comment