I'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!
I'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!
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