我正在嘗試使用HttpPost,因爲我在過去的Android中使用HttpPost。我意識到它已從最近的Android版本中刪除。在類似的StackOverflow問題之後的解決方案,我已將此添加到我的搖籃依賴關係:成功的Gradle同步後,無法在Android Studio中使用HttpPost
compile 'org.apache.httpcomponents:httpcore:4.4.1'
compile 'org.apache.httpcomponents:httpclient:4.5'
一個搖籃同步後抱怨沒有錯誤後,我仍然無法導入HttpPost程序。實際上,org.apache.http.client.methods包完全不能解析。
我也試了一下Apache的HttpClient的網站建議,這是在我的搖籃,而不是使用的依賴關係:
compile group: 'org.apache.httpcomponents' , name: 'httpclient-android' , version: '4.3.5.1'
再次,同步了罰款,而這一次的包解決,而不是HttpPost程序。
我會的任何建議表示感謝。
http://stackoverflow.com/questions/31433687/android-gradle-apache-httpclient-does-not-exist –