Skip to content

Releases: workindia/RapidWebView

2.1.0

20 Jan 05:54

Choose a tag to compare

What's Changed

Added

  • Compatibility for Android 15
  • Latest build tools and dependencies
  • Edge-to-edge display requirements

Breaking Changes

  • Minimum Java version requirement increased to Java 11
  • Requires Android Gradle Plugin 8.8.0 or higher
  • ViewBinding migration may require updates in consuming applications

New Contributors

Full Changelog: 2.0.0...2.1.0

2.0.0

04 Jul 04:00

Choose a tag to compare

What's Changed

  • The downloadEvent API has been updated for improved reliability and flexibility. The event now provides more detailed information about download progress and completion. Event payload structure has changed—please update your event listeners accordingly. Enhanced error handling and reporting for download failures.
  • Update README.md by @krishna-kudari in #19

New Contributors

Full Changelog: 1.3.0...2.0.0

1.3.0

03 Oct 10:18

Choose a tag to compare

What's Changed

Added

  • Upgraded library to API 34
  • Added downloadFileLocally & downloadFileLocallyAndOpenIntent Functionality to RapidWebViewJSInterface

Changed

  • Updated the ShowNotification function to handle "POST_NOTIFICATIONS" permission on Android 13.0+ devices
  • Updated uploadFile function to handle Media Permissions on Android 13.0+ devices and updated corresponding function signatures
  • Removed a few default permission declaration from library manifest
  • Updated documentation site according to the changes made

New Contributors

Full Changelog: 1.2.1...1.3.0

1.2.1

17 Nov 07:03
85f8514

Choose a tag to compare

Fixed

  • CrashFix
    • Pending Intent Crash Fixed for Android 12 and above
  • Whatsapp Image Fix
    • Error while sharing images to whatsapp

What's Changed

Full Changelog: 1.2.0...1.2.1

1.2.0

19 Sep 11:36

Choose a tag to compare

Changed

  • Changed File Provider and Authorities
    • changed file provider and authorities for RapidWebView SDK
    • Fixed Image Sharing Intent
  • Migration to Android 13
    • Changed CompileSDK and TargetSDK to 33
    • Changed Notification Pending Intents for new API android

1.1.0

01 Jul 10:54

Choose a tag to compare

Changed

  • Changed UploadFile function in JavaScriptInterface

    • removed callback as a parameter
    • added upload type as a parameter (possible types : PUT and POST)
    • a callback will be generated everytime once there is a failure or a success
    • callback can be listened from javascript using event listener under the name "rapid-web-view-upload-listener"
    • under callback the javascript client will get object with following attribute { detail: { 'status' : "success",'uploadUrl' : '$uploadUrl','uploadFileName' : '$fileName' } }
  • Changed Permission function in JavaScriptInterface

    • removed callback as a parameter
    • added permission type as a parameter (possible types : PUT and POST)
    • a callback will be generated everytime once there is a failure or a success
    • callback can be listened from javascript using event listener under the name "rapid-web-view-permission-listener"
    • under callback the javascript client will get object with following attribute { detail: { 'status' : "failure" } }
  • Changed method to fetch file from Internal Storage

1.0.1

22 Feb 06:54

Choose a tag to compare

Changed

  • Made RapidWebViewJSInterface an open class so that it can be overridden / extended

1.0.0

17 Feb 10:34

Choose a tag to compare

Added

  • First published release
  • Early beta implementation of RapidWebViewDownloader, RapidWebViewInterceptor & RapidWebViewJSInterface