MsaIdInterface$Stub found in modules brsdk_9.3.6_20230308-runtime.jar (brsdk_9.3.6_20230308.aar) and oaid_sdk_1.0.25-runtime.jar (oaid_sdk_1.0.25.aar)
时间: 2023-08-17 09:05:16 浏览: 149
oaid_sdk_1.0.25.rar
这似乎是两个不同的库(brsdk_9.3.6_20230308-runtime.jar和oaid_sdk_1.0.25-runtime.jar)中都包含了同一个类(MsaIdInterface$Stub)。这可能会导致冲突和错误。一种解决方案是尝试升级这些库的版本,看看是否有新版本已经修复了这个问题。另一种解决方案是手动排除其中一个库中的MsaIdInterface$Stub类,以避免冲突。您可以在 Gradle 文件中使用 exclude 语句来实现这一点。例如:
```
implementation('library-with-conflicting-class') {
exclude group: 'com.example', module: 'MsaIdInterface'
}
```
其中,'library-with-conflicting-class' 是包含了 MsaIdInterface$Stub 的库的名称,'com.example' 是该类所在的组,'MsaIdInterface' 是该类所在的模块。
阅读全文