How to download dynamic module ?
If you don’t know how to create dynamic feature module please visit this link . If you already have your module ready than we will check how to download the module in our application and use it. So let’s start :- First you have to add Android Play Core library in your project : api "com.google.android.play:core:${versions.playcore}" After that sync project and add below line in your manifest file : <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:dist="http://schemas.android.com/apk/distribution" package="com.google.android.samples.dynamicfeatures"> <dist:module dist:instant="true" /> <Application/> </manifest> Once you have done with your manifest file than you have to install splitCompact in your project. So for that you have to add the following code in your project Application class. class AppApplication : SplitCompatApplication(){ ...