Releases: workindia/RapidWebView
Releases · workindia/RapidWebView
2.1.0
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
- @Reuben-Stephen-John made their first contribution in #22
Full Changelog: 2.0.0...2.1.0
2.0.0
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
- @utkhere797 made their first contribution in #21
Full Changelog: 1.3.0...2.0.0
1.3.0
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
- @krishna-kudari made their first contribution in #18
Full Changelog: 1.2.1...1.3.0
1.2.1
Fixed
- CrashFix
- Pending Intent Crash Fixed for Android 12 and above
- Whatsapp Image Fix
- Error while sharing images to whatsapp
What's Changed
- Crash fixes by @aalaprawat in #16
Full Changelog: 1.2.0...1.2.1
1.2.0
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
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
Changed
- Made RapidWebViewJSInterface an open class so that it can be overridden / extended
1.0.0
Added
- First published release
- Early beta implementation of RapidWebViewDownloader, RapidWebViewInterceptor & RapidWebViewJSInterface