1

我正在將項目從Eclipse ADT遷移到Android Studio。進展順利,直到我運行該項目。從Eclipse ADT導入項目到Android Studio時,com.google.api.client.http.apache包不存在

我有幾個包不存在錯誤:

Error:(34, 41) error: package com.google.api.client.http.apache does not exist 
Error:(81, 19) error: cannot find symbol variable transport 
Error:(81, 36) error: cannot find symbol class ApacheHttpTransport 
Error:(170, 27) error: cannot find symbol variable transport 
Error:(170, 44) error: cannot find symbol class ApacheHttpTransport 

的包是有關谷歌的API客戶端庫。我通過Maven Repository page手動添加的依賴通過掃描:

compile 'com.google.api.client:google-api-client-auth-oauth:1.2.3-alpha' 
compile 'com.google.api.client:google-api-client-http:1.2.3-alpha' 
compile 'com.google.api.client:google-api-client-apache:1.2.3-alpha' 

但是,我不能似乎找到com.google.api.client.http.apache正確的依賴。有人在乎分享正確的方式來添加這種依賴關係嗎?

回答

相關問題