• ベストアンサー

AndroidStudio HttpGet

http://gihyo.jp/dev/serial/01/androidapp/0009 現在AndroidStudioにて上記urlを見てやっているのですが「HttpGet」や「DefaultHttpClient」などで赤字が出てしまい 調べて見たら終了したサポートだという事がわかったのですがbiuld.grabaleに下記url一行を追加したのですが、それでもimportできない場合、他に修正する場所や疑う場所はありますか?(http://blog.riskfinder.co.jp/2015/10/android-60apatch-http-client.html

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

その記事でエラーは解消されました。 Build.gradleファイルは2つ有ると思いますが、「android {」ブロックが記述されている方に、下記のように「android {」の次にでも追加して下さい。 android { useLibrary 'org.apache.http.legacy' ~

その他の回答 (1)

回答No.2

>回答No.1 amanojaku1 >Build.gradleファイルは2つ有ると思いますが、「android {」ブロックが記述されている方 バージョンによって下記の設定の内容は多少変わって来るかもしてませんが「apply plugin: ~」と言う記述が有る方です。 >apply plugin: 'com.android.application' > >android { > useLibrary 'org.apache.http.legacy' > compileSdkVersion 25 > buildToolsVersion "25.0.2" > defaultConfig { > applicationId "com.example.user.myapplication006" > minSdkVersion 10 > targetSdkVersion 25 > versionCode 1 > versionName "1.0" > testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" > } > buildTypes { > release { > minifyEnabled false > proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' > } > } >} > >dependencies { > compile fileTree(dir: 'libs', include: ['*.jar']) > androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { > exclude group: 'com.android.support', module: 'support-annotations' > }) > compile 'com.android.support:appcompat-v7:25.3.1' > compile 'com.android.support.constraint:constraint-layout:1.0.2' > testCompile 'junit:junit:4.12' >}

関連するQ&A