6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Androidアプリ依存ライブラリの最新バージョン確認方法

Last updated at Posted at 2018-08-20

はじめに

Androidアプリ開発していると依存しているライブラリが更新されることがある。
後述のやり方で確認しているけれど、皆どうやってるのか気になったので投稿してみた。

※ バージョンを明示せずに+で最新版を使うdynamic versionsは推奨されてないし面倒なことがあったので使わない。
※ ライブラリアップデートによる影響の有無確認は別の話なので置いとく。

環境

  • macOS 10.13.6
  • Android Studio 3.3

確認方法

1. build.gradleで指摘されたら更新

build.gradle を開くと新しいバージョンが存在することを指摘してくれる。
スクリーンショット 2018-08-20 15.43.14.png

ただ、ここで指摘くれないけれど、新しいバージョンが存在するケースがたまにある。
以下の com.squareup.okhttp3:okhttp は現時点だと 3.11.0 が最新バージョンなのに上記ktxのように指摘されない。
スクリーンショット 2018-08-20 15.18.26.png

2. Project Structureで確認して更新

「Flie - Project Structure...」(command+;)で表示できるProject StructureのDependenciesで依存関係を確認できる。
build.gradle上では指摘されなかったcom.squareup.okhttp3:okhttpもここでは新しいバージョンである3.11.0が存在することが表示されている。
スクリーンショット 2018-08-20 15.19.19.png

6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?