Upgrade from 1.5.5 to 1.5.6 break project compilation
ben-j69 opened this issue · 2 comments
ben-j69 commented
Hello,
I was using v1.5.5 with okhttp :
// Android Snooper library for Okhttp
implementation('com.github.jainsahab:Snooper-Okhttp:1.5.5@aar') {
transitive = true
}
When I upgrade to 1.5.6, I can not run my unit tests anymore, do you have an idea of what happened ? Maybe there is a conflict in dependencies ?
// Android Snooper library for Okhttp
implementation('com.github.jainsahab:Snooper-Okhttp:1.5.6@aar') {
transitive = true
}
The error appear when I run ./gradlew app:compilePrimaryDebugUnitTestKotlin
:
> Task :app:compilePrimaryDebugUnitTestKotlin FAILED
e: /Users/benj/Desktop/XXX/XXX-android-client/app/src/test/java/com/wayzup/object/ObjectTestHelper.kt: (3, 27): Unresolved reference: lang3
e: /Users/benj/Desktop/XXX/XXX-android-client/app/src/test/java/com/wayzup/object/ObjectTestHelper.kt: (18, 26): Unresolved reference: SerializationUtils
e: /Users/benj/Desktop/XXX/XXX-android-client/app/src/test/java/com/wayzup/object/ObjectTestHelper.kt: (19, 28): Unresolved reference: SerializationUtils
jainsahab commented
ben-j69 commented
@jainsahab thanks, it is solved, I should have find alone, sorry to waste your time!