build.gradle中引入eventbus2.4.0
implementation 'org.greenrobot:eventbus:2.4.0'
複製程式碼
報錯如下:
ERROR: Failed to resolve: org.greenrobot:eventbus:2.4.0
複製程式碼
在https://mvnrepository.com/上搜尋eventbus,發現3.0及以前版本的eventbus所屬的group是de.greenrobot:
3.0和3.1所屬的group是org.greenrobot:
所以要引入2.4.0版本可以使用以下方法:
implementation 'de.greenrobot:eventbus:2.4.0'
複製程式碼