如何合并两个 android studio 项目并使用它?
How to combine two android studio project and use it?
我有一个 Torrent 下载器应用程序的源代码(https://gitlab.com/proninyaroslav/libretorrent)。
我想将它添加到我的应用程序中。
在堆栈溢出时,我发现首先将它设为库 (aar) 然后在我的应用程序中使用但我不明白如何从我的应用程序中 call/access 它?
您是否将库包导入到您的代码中?
尝试在 class 的顶部添加 import org.proninyaroslav.libretorrent;
。
我有一个 Torrent 下载器应用程序的源代码(https://gitlab.com/proninyaroslav/libretorrent)。 我想将它添加到我的应用程序中。
在堆栈溢出时,我发现首先将它设为库 (aar)
您是否将库包导入到您的代码中?
尝试在 class 的顶部添加 import org.proninyaroslav.libretorrent;
。