This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
Releases: matei-radu/react-native-in-app-browser
Releases · matei-radu/react-native-in-app-browser
Release v3.1.0
Added
- Android-specific
warmup
andmayLaunchUrl
methods to reduce custom tab activity start time.
Release v2.1.0
Added
- Android-specific
warmup
andmayLaunchUrl
methods to reduce custom tab activity start time.
Release v3.0.0
Added
- Compatibility with React Native
0.60.0
and, with it, autolinking: no need to manually link anymore.
Removed
- Compatibility with React Native versions below
0.60.0
. If you need to use an older version of React Native, check the compatibility table to use the appropriate package.
Changed
- iOS podspec file has been updated to support React Native
0.60.0
. - Bump Kotlin to version
1.3.31
. - Remove explicit Android Build Tools version from Gradle configuration.
Release v2.0.0
Removed
The following deprecated functions have been removed. Please see Migrating from 1.x to 2.x for more details.
openInApp
, useInAppBrowser.open
instead.initialize
, useInAppBrowser.configure
instead.closeInAppInstance
, useInAppBrowser.close
instead.
Release v1.4.1
Fixed
- Packaging script typo that prevended NPM interoperability (thanks to @a6kme).
Changed
- Android
getBitmapFromUriOrDrawable
has been refactored for better maintainability. - Android
convertDpToPixel
has been replaced with Facebook'sPixelUtil.toPixelFromDIP
since it's more tested and reliable.
Release v1.4.0
Added
- Object
InAppBrowser
with methods:open
as a drop-in replacement foropenInApp
,configure
as a drop-in replacement forinitialize
,close
as a drop-in replacement forcloseInAppInstance
.
Deprecated
The following functions have been deprecated. Please see
Deprecated Features for migration paths and rationale for these changes.
openInApp
, useInAppBrowser.open
instead.initialize
, useInAppBrowser.configure
instead.closeInAppInstance
, useInAppBrowser.close
instead.
Release v1.3.0
Added
- Example project in the
example
directory.
Changed
- Color properties (
toolbarColor
,preferredBarTintColor
andpreferredControlTintColor
) now
accept more color formats. Please refer to TinyColor's Accepted String Input to see all available formats. - The iOS
.podspec
will now automatically stay in sync withpackage.json
(thanks to @ericlewis).
Release v1.2.7
Added
- Compatibility with React Native
0.59.0
.
Fixed
- Missing Flow definitions for
closeInAppInstance
. - Outdated iOS podspec file.
Changed
- Bump Kotlin to version
1.3.21
. - Minor refactoring of
settings.ts
.
Release v1.2.4
Added
- Compatibility with React Native
0.58.0
.
Fixed
- Possible iOS crashes due to thread clashing (thanks to @yoneapp)
Changed
- Bump Android target from
26
to27
(same as React Native0.58.0
). - Bump Android build tools from
27.0.3
to28.0.2
(same as React Native0.58.0
). - Bump Android compile vesion from
27
to28
(same as React Native0.58.0
). - Bump Android Gradle tools from
3.1.4
to3.2.0
(same as React Native0.58.0
).
Release v1.2.1
Fixed
- Typo in the iOS
openInApp
function that prevented compilation.