我收到这样的错误:
Duplicate class com.tinder.scarlet.Deserialization found in modules jetified-scarlet-core-0.1.10.jar (com.github.tinder.scarlet:scarlet-core:0.1.10) and jetified-scarlet-core-0.1.10.jar (com.tinder.scarlet:scarlet-core:0.1.10)
添加以下行后,我开始收到此错误:
kotlinOptions {
jvmTarget = '1.8'
}
到
android
的build.gradle
范围。所有这些操作都是为了解决此问题而进行的:Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6
我在这一行看到的这个问题:
val myService = scarlet.create<MessageService>() // word create was highlighted
我的gradle实现:
implementation 'com.tinder.scarlet:scarlet:0.1.10'
implementation 'com.github.tinder.scarlet:scarlet-message-adapter-moshi:0.1.10'
implementation 'com.github.tinder.scarlet:scarlet-stream-adapter-rxjava2:0.1.10'
implementation 'com.github.tinder.scarlet:scarlet-websocket-okhttp:0.1.10'
也许我以错误的方式解决了这个问题,而我不得不使用另一个解决方案?
最佳答案
请更改版本
implementation 'com.tinder.scarlet:scarlet:0.1.9' // or 0.1.7
阅读 Duplicate dependency compilation error 。