Hi I have two project "library" and "application" ...
# kotlin-native
c
Hi I have two project "library" and "application" "library" contants some class and some method in this class. In "application" I trying to call the method and getting error like
Compilation failed: Symbol for public <http://pw.binom.io|pw.binom.io>.httpClient/HttpClient.request|-4729544346512717501[0] is unbound
Then I renamed
HttpClient.request
to
HttpClient.connect
and build it. Then I again try to compile "application" and get error: method
request
not found. It is fine, because I renamed method. I fix call
request
to
connect
in "application" and tryed to build "application" again. And in this turn I got same error:
Compilation failed: Symbol for public <http://pw.binom.io|pw.binom.io>.httpClient/HttpClient.request|-4729544346512717501[0] is unbound
Maybe I must clear some cache? I made
gradle clean
on both project. It not work.
I changed version of library, and after that old error about
is unbound method
gone
Maybe kotlin has some cache not in gradle's
build
folder?