Multiple Android Application Modules Under One Project

后端 未结 2 554
不知归路
不知归路 2021-01-20 11:23

I have two \'android application modules\' in one project and they create independent apks. But I want to combine these two modules into one hence creating dependencies betw

相关标签:
2条回答
  • 2021-01-20 11:45

    Each application module creates a separate APK. What you may want to do is to create a library module to contain code common to both APKs and then add a dependency between them.

    0 讨论(0)
  • 2021-01-20 12:04

    So guys I figured the right way to handle this problem.

    So I created a placeholder library module under the project that had 2 android application modules and modified the build.gradle(i.e. I introduced android SourceSet objects) of that library module to point to sources(src and res folders) of the other application module that I wanted to merge into other application module.

    In this way both the application module may coexist under the same project and you never have to touch your application module(that you wanted to convert to a library module).

    The only difference would be that the manifest file of this library module will not be having a 'LAUNCHER' intent filter for any of its activity since an application module can not have more than one LAUNCH activities.

    So this way you can still have 2 independent apks and continue to develop the applications independently and if you want to include one in the other then use a placeholder library module to point sources of the app modules.

    0 讨论(0)
提交回复
热议问题