Does anyone have any idea what I need to adjust if...
# ktor
b
Does anyone have any idea what I need to adjust if I want to use Ktor with Gradle 8.0 on Android? In release builds, all the url parameters are missing, a URL then looks like “https://domain.com/index?&&&“, for example. Everything else works and only happens in the release build, so probably a problem with R8/Minify. (Using Ktor 2.3.1 with Android Client (“ktor-client-android”))
1
Ok,
-keepclassmembers class io.ktor.http.** { *; }
fixes it