I am new to Kotlin so apologies if I am missing something simple here.
I am trying to import the Fuel libraries into my project, I have added the below into my Gradle which appears to sync fine
implementation 'com.github.kittinunf.fuel:fuel:<latest-version>'
implementation 'com.github.kittinunf.fuel:<package>:<latest-version>'
However, when I try to import this into my activity as below:
import com.github.kittinunf.fuel.httpGet
import com.github.kittinunf.result.Result
'github' becomes highlighted in red, and the error below is shown:
Unresolved reference: github
As such I am unable to access the library, just wondering if I am missing something here in order to get this to work ? I have been able to import other libraries into my project successfully, so wondering if it is something specific to this implementation I am missing. Hoping somebody could kindly assist.