bumptech / glide

An image loading and caching library for Android focused on smooth scrolling
https://bumptech.github.io/glide/
Other
34.67k stars 6.12k forks source link

why disable the quic in CronetEngineSingleton? #5329

Open liyuzero opened 1 year ago

liyuzero commented 1 year ago

in the file: CronetEngineSingleton;

why disable the quic, if do this, glide still only use http2 but not http3? even if I integrate the dependence:

implementation "com.github.bumptech.glide:cronet-integration:4.14.2"

private static CronetEngine createEngine(Context context) { return new CronetEngine.Builder(context) .enableHttpCache(CronetEngine.Builder.HTTP_CACHE_DISABLED, 0) .enableHttp2(true) .enableQuic(false) .build(); }