LoginSignup
1
0

More than 3 years have passed since last update.

AndroidStudioで『エラー: パッケージorg.apache.httpは存在しません』を解消する

Last updated at Posted at 2019-06-27

古いアプリのSDKが21だったためバージョンを上げたら次のようなエラーが

エラー: パッケージorg.apache.httpは存在しません

Android 6.0(API レベル 23)以降 org.apacheパッケージ削除

org.apacheパッケージが削除されたようです。

詳細はこちら
https://developer.android.com/sdk/api_diff/23/changes.html?hl=ja

対応

とりあえず動けばということで古いパッケージを使います。

build.gradle に以下を追加

build.gradle
android {
    useLibrary 'org.apache.http.legacy'
}

※自ブログからの転載です
http://akinov.hatenablog.com/entry/2019/06/27/121906

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0