LoginSignup
0
0

More than 1 year has passed since last update.

gradleでgoogleのguavaをインポートする

Posted at

gradle7系から依存関係の書き方が変わりました。
(これを知らなくて詰まりました。。)

以下を設定し、gradleプロジェクトを更新すればOKです。

dependencies {
    implementation("com.google.guava:guava:31.0.1-jre")
}

最新情報は公式のREADMEを見るのがよさそうです。

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