Last active
May 24, 2018 06:35
-
-
Save saurabhkpatel/d104a6881ba77a92de0ab49cdeb06ad4 to your computer and use it in GitHub Desktop.
dynamic feature module Manifest file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<manifest package="com.saurabh.dynamic_feature" | |
<!--split tag : declare your module as a new split apk of your application--> | |
split="custom_dynamic_feature" | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:dist="http://schemas.android.com/apk/distribution"> | |
<!--split dist:module : define module attributes/configs--> | |
<dist:module | |
dist:onDemand="true" | |
dist:title="@string/title_dynamic_feature"> | |
<dist:fusing include="true"/> | |
</dist:module> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment