Hi, I'm getting this issue when integrating volley 1.2.0 into my project.
Add library dependency:
dependencies {
...
implementation 'com.android.volley:volley:1.2.0'
}
Android Studio 4.2 buid warning:
Task :library:minifyXXXReleaseWithR8
AGPBI: {"kind":"warning","text":"Missing class: org.chromium.net.UrlRequest$Callback","sources":[{}],"tool":"R8"}
Missing class: org.chromium.net.UrlRequest$Callback
Should I have to add google play service cronet manually?
dependencies {
...
implementation 'com.android.volley:volley:1.2.0'
implementation 'com.google.android.gms:play-services-cronet:17.0.0'
}