1. 程式人生 > >Program type already present:okio.AsyncTimeout$Watchdog Message{kind=ERROR, text=Program type :okio

Program type already present:okio.AsyncTimeout$Watchdog Message{kind=ERROR, text=Program type :okio

有兩個okio 通過雙擊shift鍵盤,然後在輸入框裡面輸入AsyncTimeout,發現是因為有兩個okio.jar包,手動暴力刪除後就好了

然而過了幾天問題又重新出現了,一樣的問題,沒錯!就是下圖的這個問題

經過不懈的谷歌,終於找到了解決方案(在app下的build檔案下的android裡面新增如下語句):

configurations {
    all*.exclude group: 'com.squareup.okio'
    all*.exclude group: 'com.android.support', module: 'support-v13'
}

完美解決