我試圖使用的Mockito的儀器測試,當我添加androidTestCompile的Mockito givning錯誤
androidTestCompile 'org.mockito:mockito-core:2.7.22'
我收到以下錯誤:
Error:Conflict with dependency 'org.objenesis:objenesis' in project ':app'.
Resolved versions for app (2.1) and test app (2.5) differ. See
http://g.co/androidstudio/app-test-app-conflict for details.
我不知道什麼是錯的,我有沒有org.objenesis依賴指定在我的代碼中的任何地方(猜測它通過mockito來)。
每一個幫助,讚賞。
沒有的Mockito應該是在你的'app',只有在你的'測試app'。你可以試試'./gradlew app:dependencies --configuration compile'並查看objenesis'是否在你的依賴圖中的任何位置? –
我會檢查一下,它確實很奇怪,它可能包含在我一直使用的第三方庫中,因爲我從未將它包含在應用程序中。 – meow