3

enter image description hereI'd like to see if class exists in jar. Is it possible to view jar files in Android Studio Project Explorer and how?

Thank you!

Kiryl Ivanou
  • 1,015
  • 2
  • 12
  • 22

1 Answers1

0

I understood why unable to see lib files (in my case guava) because it wasn't compiled (or added on runtime as it seems)! I got error on rumtime for that guava library

Error:Bad service configuration file, or exception thrown while constructing Processor object: javax.annotation.processing.Processor: Provider dagger.internal.codegen.ComponentProcessor could not be instantiated: java.lang.NoClassDefFoundError: com/google/common/collect/SetMultimap

where com/google/common/collect/SetMultimap is from guava

for example, if

compile files('libs\ugava.jar')

performs successfully in build.gradle than this library is able for its files to view in Project browser

Kiryl Ivanou
  • 1,015
  • 2
  • 12
  • 22