0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WorkManagerの情報取得エラー

Posted at

WorkManagerの情報を取得する時に下記のようなメソッドを呼び出しますが、ある時からCannot access classエラーになりビルドが通らなくなりました。

WorkManager.getInstance(this).getWorkInfoById()
WorkManager.getInstance(this).getWorkInfosByTag()

エラー内容です。原因は同じクラス名が競合してるみたい。

Cannot access class 'com.google.common.util.concurrent.ListenableFuture'. Check your module classpath for missing or conflicting dependencies

gradleから直接指定することで解決しました。バージョンや指定法方によってはエラーになるようなので、参考のリンクからビルドが通るものを選びます。

implementation "com.google.guava:guava:33.4.0-android"

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?