Reputation: 880
I'm trying add a library geocoder-java to find coordinates for an adress.
I tryed like bellow in "build.gradle":
dependencies {
...
compile 'com.google.code.geocoder-java:geocoder-java:0.16'
...
}
I did the clean and compile, and the library has been downloaded.
But the result was "Cannot resolve symbol" when I try to use the classes.
Upvotes: 0
Views: 39
Reputation: 880
The problem was the IntelliJ.
To solve the problem: View > Tool Windows > Gradle > Click the refresh button
Upvotes: 0