diff --git a/CHANGELOG.md b/CHANGELOG.md index 849299e6..d63a699d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ ## 6.0.0-beta.25 +- Updated `androidx.webkit:webkit` dependency to `1.8.0` +- Updated `androidx.browser:browser` dependency to `1.6.0` - Merged "feat: InAppLocalhostServer decode assets url when loading them" [#1657](https://github.com/pichillilorenzo/flutter_inappwebview/pull/1657) (thanks to [Nirajn2311](https://github.com/Nirajn2311)) +- Merged "fix: xcode 15 related bug" [#1801](https://github.com/pichillilorenzo/flutter_inappwebview/pull/1801) (thanks to [nesquikm](https://github.com/nesquikm)) ## 6.0.0-beta.24+1 diff --git a/android/build.gradle b/android/build.gradle index 2cfe7d41..5818c71b 100755 --- a/android/build.gradle +++ b/android/build.gradle @@ -49,8 +49,8 @@ android { } } dependencies { - implementation 'androidx.webkit:webkit:1.6.1' - implementation 'androidx.browser:browser:1.5.0' + implementation 'androidx.webkit:webkit:1.8.0' + implementation 'androidx.browser:browser:1.6.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' } diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index dadb3354..1a5f9e50 100755 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -32,14 +32,14 @@ android { targetCompatibility 1.8 } - compileSdkVersion 33 + compileSdkVersion 34 defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.pichillilorenzo.flutter_inappwebviewexample" minSdkVersion 19 - targetSdkVersion 33 + targetSdkVersion 34 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"