如何将SDK添加到android中的动态模块功能?

发布于 2025-01-16 05:14:48 字数 554 浏览 0 评论 0原文

我有一个 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 :
enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风疏影 2025-01-23 05:14:48

您需要将mobilertc从.AAR文件初始化到差异模块,或者使用其他方法初始化AAR。

我只有从差异模块的 .AAR 初始化 mobilertc 的经验。

  1. 首先,为您的 mobilertc 库创建新文件夹,
  2. 创建 build.gradle 文件,并将此代码放入 build.gradle 文件中,
configurations.maybeCreate("default")
artifacts.add("default", file('mobilertc.aar'))
  1. mobilertc.aar 文件移动到新文件夹,与您的新文件夹位于同一位置build.gradle,
  2. 在 Android Studio 中打开 settings.gradle 文件,然后添加以“:”开头的 mobilertc 库的新文件夹名称,例如:我放置 mobilertc aar 的文件夹名称是“mobilertc”,然后在settings.gradle 我添加了这一行, include ':mobilertc'
  3. 在您的动态功能 build.gradle 上,不要忘记在依赖项中添加 mobilertc 库的实现项目。
dependencies {
    implementation project(':mobilertc')
}
  1. 同步 Gradle。并尝试再次初始化Zoom SDK。

希望我的回答可以帮助您和其他阅读此答案的用户:)

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.

  1. First of all make new folder for your mobilertc library,
  2. Create build.gradle file, and put this code in build.gradle file,
configurations.maybeCreate("default")
artifacts.add("default", file('mobilertc.aar'))
  1. Move mobilertc.aar file to your new folder with the same place with your new build.gradle,
  2. Open your settings.gradle file in your Android Studio, and add your new folder name of your mobilertc library start with ':', example: the folder name where I put the mobilertc aar is "mobilertc" then in settings.gradle I add this line, include ':mobilertc',
  3. On your dynamic feature build.gradle, don't forget to add implementation project for mobilertc library in dependencies.
dependencies {
    implementation project(':mobilertc')
}
  1. Sync the Gradle. And try initialize the Zoom SDK again.

Hope my answer can help you and another user who read this answer :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文