Skip to content

Instantly share code, notes, and snippets.

@mataku
Last active August 26, 2019 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mataku/b9b1023ef892e030b5eb7cf59166ced1 to your computer and use it in GitHub Desktop.
Save mataku/b9b1023ef892e030b5eb7cf59166ced1 to your computer and use it in GitHub Desktop.
On demand
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
package="com.mataku.amazingapp.feature.ondemandfeature">
<dist:module
dist:instant="false"
dist:onDemand="true"
dist:title="@string/module_title">
<dist:fusing dist:include="true" />
</dist:module>
<application>
<activity android:name=".ui.activity.FeatureActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment