「Android/HttpRequest通信/okhttp3」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==インストール== app/build.gradle dependencies { implementation 'com.squareup.okhttp3:okhttp:3.7.0' }」) |
(→インストール) |
||
| 行4: | 行4: | ||
implementation 'com.squareup.okhttp3:okhttp:3.7.0' | implementation 'com.squareup.okhttp3:okhttp:3.7.0' | ||
} | } | ||
| + | |||
| + | ==参考== | ||
| + | https://qiita.com/naoi/items/8d493f00b0bbbf8a666c | ||
2018年8月2日 (木) 18:48時点における版
インストール
app/build.gradle
dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.7.0'
}
