react-native-inappbrowser-reborn
Advanced tools
Comparing version 3.6.0 to 3.6.1
@@ -25,2 +25,7 @@ # Changelog | ||
## [3.6.1] - 2021-06-27 | ||
### Added | ||
- Add try catch block to `CustomTabs` logic to validate the url. | ||
## [3.6.0] - 2021-06-25 | ||
@@ -191,3 +196,4 @@ | ||
[Unreleased]: https://github.com/proyecto26/react-native-inappbrowser/compare/v3.6.0...HEAD | ||
[Unreleased]: https://github.com/proyecto26/react-native-inappbrowser/compare/v3.6.1...HEAD | ||
[3.6.1]: https://github.com/proyecto26/react-native-inappbrowser/compare/v3.6.0...v3.6.1 | ||
[3.6.0]: https://github.com/proyecto26/react-native-inappbrowser/compare/v3.5.1...v3.6.0 | ||
@@ -194,0 +200,0 @@ [3.5.1]: https://github.com/proyecto26/react-native-inappbrowser/compare/v3.5.0...v3.5.1 |
{ | ||
"name": "react-native-inappbrowser-reborn", | ||
"version": "3.6.0", | ||
"version": "3.6.1", | ||
"description": "InAppBrowser for React Native", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -36,3 +36,3 @@ <p align="center"> | ||
## Demo | ||
## Who is using InAppBrowser? | ||
@@ -43,4 +43,7 @@ Do you want to see this package in action? Check these awesome projects, yay! 🎉 | ||
- [Alpe Audio](https://www.alpeaudio.com) - Courses On The Go. | ||
- [VibePay](https://vibepay.com) - A simple, smarter, better way to get paid. | ||
- [Opinio](https://opinio.media) - Allows the population to be surveyed on social issues. | ||
- [medpex: Online Apotheke](https://www.medpex.de) - Online pharmacy for medicines & cosmetics with over 5 million customers. | ||
Let us know about your awesome project [here](https://github.com/proyecto26/react-native-inappbrowser/issues/164)! ❤️ | ||
Share your awesome project [here](https://github.com/proyecto26/react-native-inappbrowser/issues/164)! ❤️ | ||
@@ -72,3 +75,3 @@ ## Getting started | ||
targetSdkVersion = 28 | ||
# Only using Android Support libraries | ||
// Only using Android Support libraries | ||
supportLibVersion = "28.0.0" | ||
@@ -88,3 +91,3 @@ } | ||
targetSdkVersion = 28 | ||
# Remove 'supportLibVersion' property and put specific versions for AndroidX libraries | ||
// Remove 'supportLibVersion' property and put specific versions for AndroidX libraries | ||
androidXAnnotation = "1.1.0" | ||
@@ -238,13 +241,17 @@ androidXBrowser = "1.0.0" | ||
- Enable deep linking (Android) - **[AndroidManifest.xml](https://github.com/proyecto26/react-native-inappbrowser/blob/master/example/android/app/src/main/AndroidManifest.xml#L23)** | ||
- Enable deep linking (Android) - **[AndroidManifest.xml](https://github.com/proyecto26/react-native-inappbrowser/blob/main/example/android/app/src/main/AndroidManifest.xml#L23)** | ||
``` | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
<data android:scheme="my-scheme" android:host="my-host" android:pathPrefix="" /> | ||
</intent-filter> | ||
<activity | ||
... | ||
android:launchMode="singleTask"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
<data android:scheme="my-scheme" android:host="my-host" android:pathPrefix="" /> | ||
</intent-filter> | ||
</activity> | ||
``` | ||
- Enable deep linking (iOS) - **[Info.plist](https://github.com/proyecto26/react-native-inappbrowser/blob/master/example/ios/example/Info.plist#L23)** | ||
- Enable deep linking (iOS) - **[Info.plist](https://github.com/proyecto26/react-native-inappbrowser/blob/main/example/ios/example/Info.plist#L23)** | ||
``` | ||
@@ -278,4 +285,4 @@ <key>CFBundleURLTypes</key> | ||
import { Root } from 'native-base' | ||
import { createStackNavigator } from 'react-navigation' | ||
import { getDeepLink } from './utilities' | ||
import { createStackNavigator } from 'react-navigation' | ||
@@ -491,2 +498,10 @@ const Main = createStackNavigator( | ||
Donate **Ethereum**, **ADA**, **BNB**, **SHIBA**, **USDT**, **DOGE**: | ||
![Wallet address](https://user-images.githubusercontent.com/2154886/123501719-84bf1900-d60c-11eb-882c-98a499cea323.png) | ||
> Wallet address: 0x3F9fA8021B43ACe578C2352861Cf335449F33427 | ||
Please let us know your contributions! 🙏 | ||
## Enterprise 💼 | ||
@@ -493,0 +508,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
103827
516