add android.webkit.WebResourceResponse for K-9 Mail

This commit is contained in:
Julian Winkler
2025-02-19 21:07:24 +01:00
parent 19e91df8af
commit 344058d475
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package android.webkit;
import java.io.InputStream;
public class WebResourceResponse {
public WebResourceResponse(String mimeType, String encoding, InputStream data) {}
}