Android项目中的循环依赖

前端之家收集整理的这篇文章主要介绍了Android项目中的循环依赖前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在开发一个基于pjsua2库的应用程序.
当我在Oreo下面的任何版本的android上运行项目时,它工作正常,我能够调试应用程序.但当我尝试在我的新手机上调试它有Android版奥利奥时,它给我以下错误

Circular dependency between the following tasks:
:app:checkManifestChangesDebug
\--- :app:instantRunMainApkResourcesDebug
     \--- :app:transformClassesAndDexWithShrinkResForDebug
          \--- :app:transformDexArchiveWithDexMergerForDebug
               +--- :app:preColdswapDebug
           |        \--- :app:incrementalDebugTasks
           |                 +---:app:transformClassesAndClassesEnhancedWithInstantReloadDexForDebug
               |         |    \--- :app:transformClassesWithInstantRunForDebug
               |         |         \--- :app:checkManifestChangesDebug (*)
               |         \--- :app:transformClassesWithInstantRunForDebug (*)
               \--- :app:transformClassesWithDexBuilderForDebug 
                    +--- :app:preColdswapDebug (*)
                    \--- :app:transformClassesWithInstantRunForDebug (*)

(*) - details omitted (listed prevIoUsly)

我认为这是由于Android版本,但我真的需要解决这个问题.
所以,如果有人能提供帮助,我将非常感激

最佳答案
我实际上遇到了同样的问题,我找到了两种方法来绕过这个,等待有一个真正的解决方案来解决这个问题.

1)禁用即时运行:
  – >设置/构建,执行,部署/即时运行(取消选中“启用即时运行”)

要么

2)如果在应用程序级别build.gradle中将其设置为true,则禁用shrinkResources

shrinkResources false

我仍然在寻找一种更好的方法解决这个问题……

原文链接:https://www.f2er.com/android/430235.html

猜你在找的Android相关文章