proyecto26 / react-native-inappbrowser

📱InAppBrowser for React Native (Android & iOS) 🤘
https://www.npmjs.com/package/react-native-inappbrowser-reborn
MIT License
1.32k stars 227 forks source link

Incompatible sdk version with androidx.browser v 1.4.0-alpha #302

Closed Swackles closed 3 years ago

Swackles commented 3 years ago

Which platform(s) does your issue occur on?

Please, tell us how to recreate the issue in as much detail as possible.

This error occurs when your compiled sdk verson is below 31. September 15, 2021 androidx.browser v1.4.0-alpha01 got released. Since this package always uses the latest 1 version, this breaks our build.

Current fix I found doing fallowing change in build.gradle line 61.

def defaultAndroidXVersion = "1+"` -> def defaultAndroidXVersion = "1.3+"`
jdnichollsc commented 3 years ago

Hello mate, thanks for reporting this issue

Please check the configuration for AndroidX libs from README

Best, Juan