Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 607 Bytes

Migration.md

File metadata and controls

16 lines (11 loc) · 607 Bytes

Migration

From v2.x.x to v3.x.x

  • The license has been changed from the Apache License 2.0 to the MIT License.

  • The signature of AdvancedWebView.Listener#onDownloadRequested has changed from

    void onDownloadRequested(String url, String userAgent, String contentDisposition, String mimetype, long contentLength)

    to

    void onDownloadRequested(String url, String suggestedFilename, String mimeType, long contentLength, String contentDisposition, String userAgent)