Last active
August 22, 2018 12:44
-
-
Save bapspatil/acacadff182da8a182947c0d18cef594 to your computer and use it in GitHub Desktop.
Manifest file for feature1 in Android App Bundle
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:dist="http://schemas.android.com/apk/distribution" | |
| package="your.packagename.feature1"> | |
| <dist:module | |
| dist:onDemand="true" | |
| dist:title="@string/title_feature1"> | |
| <dist:fusing include="true" /> | |
| </dist:module> | |
| <application> | |
| <activity android:name=".FeatureOneActivity"> | |
| <meta-data | |
| android:name="android.support.PARENT_ACTIVITY" | |
| android:value="your.packagename.yourappname.MainActivity" /> | |
| </activity> | |
| </application> | |
| </manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment