Hi, using 3.0.0-alpha1 on my android project when I make a simple GET request on a healthy URL I get the following exception and the request fails:
java.lang.IllegalAccessError: Field 'okhttp3.OkHttpClient$Builder.eventListenerFactory' is inaccessible to class 'okhttp3.OkHttpClient' (declaration of 'okhttp3.OkHttpClient' appears in ../base.apk!classes4.dex
code
import fuel.Fuel
import fuel.get
val spUrl = "https://google.com"
val res = Fuel.get(spUrl) // <- throws exception
I'm not sure if it's a bug in the lib or something related to my android project?