技術的な備忘録も兼ねた覚書です。
Google Guava を Android で使うには、app/build.gradle の dependencies に
implementation 'com.google.guava:guava:31.1-android'
を追記。
ただし、31.1 の箇所は
https://mvnrepository.com/artifact/com.google.guava/guava で比較的新しいものを指定する。vulnerabilities: があるものを指定するのは当然良くない。
使うクラスに応じて、import com.google.common.xxxx.yyyy は忘れずに。