如何将SDK添加到android中的动态模块功能?
我有一个 Android 应用程序,我想将 Zoom SDK 添加到我的应用程序中。但应用程序的大小越来越大。我读过一些解决方案,其中之一是使用 android 的动态模块功能。我决定根据用户需求设置SDK的下载。有没有办法将本机 SDK 添加到我们应用程序中的动态模块?谢谢。
我已经制作了一些动态模块功能并将 Zoom SDK 模块添加到该动态模块功能中,但该动态模块功能中的 MainActivity 类无法访问该 Zoom SDK 中的任何内容。
我有一个名为“zoomdynamicmodule”的动态模块,并且有 2 个来自 Zoom SDK 的模块(commonlib 和 mobilertc)。但我无法在我的 ZoomActivity 类上导入 ZoomSDK。我使用的将 Zoom SDK 添加为动态模块的方法是否错误?请帮忙。
谢谢。
I have an android application and i want to add Zoom SDK to my apps. but the size of apps increasingly so much. I have read some solution and one of them is to use Dynamic Module Feature from android. I decide to set the SDK will downloaded based on user demand. is there way to add SDK native to dynamic module in our Apps? Thanks.
I've make some Dynamic Module Feature and add Zoom SDK module to that Dynamic Module Feature but my MainActivity class from that Dynamic Module Feature cannot access anything from that Zoom SDK.
This is my project structure :
i have dynamic module with name 'zoomdynamicmodule', and there are 2 module (commonlib & mobilertc) from zoom SDK. but i cannot import that ZoomSDK on my ZoomActivity class. Is the method i use wrong to add Zoom SDK as dynamic module? Please Help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将mobilertc从.AAR文件初始化到差异模块,或者使用其他方法初始化AAR。
我只有从差异模块的 .AAR 初始化 mobilertc 的经验。
mobilertc.aar
文件移动到新文件夹,与您的新文件夹位于同一位置build.gradle,include ':mobilertc'
,希望我的回答可以帮助您和其他阅读此答案的用户:)
You need to initialize the mobilertc from .AAR file to difference module, or with another method to initialize AAR.
I only have an experience with initialize mobilertc from .AAR from difference module.
mobilertc.aar
file to your new folder with the same place with your new build.gradle,include ':mobilertc'
,Hope my answer can help you and another user who read this answer :)