I am trying to add lifecycle:extensions to my project but it shows the err
Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve android.arch.lifecycle:extensions:1.1.1.
None of solutions provided in the web doesn't helped me. My question is not about how resolve the error. After checking sdk different directories, I noticed that there is a directory in the following directory with number of Java classes:
<SDK_HOME>\sources\android-27\android\arch\lifecycle
My question is that after successful downloading "extensions-1.1.1.aar" from a repository, in which directory it (aar file) would be saved? And which files would be downloaded with the .aar file (such as .pom/.pom.sha1 ...)? Thanks.
This artifact was published to
mavenCentral(), most likely togoogle(), too.SDK_HOMEis something very else. if wanting to load from a local repository, usemavenLocal()- but this only works once having added the required artifacts into it - else it will not find them; this only makes sense, when working offline.