diff --git a/flutter_custom_tabs/example/pubspec.yaml b/flutter_custom_tabs/example/pubspec.yaml index 9b03258..5e1378b 100644 --- a/flutter_custom_tabs/example/pubspec.yaml +++ b/flutter_custom_tabs/example/pubspec.yaml @@ -17,7 +17,7 @@ dependencies: dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 flutter: uses-material-design: true \ No newline at end of file diff --git a/flutter_custom_tabs/pubspec.yaml b/flutter_custom_tabs/pubspec.yaml index 19ee00e..0832da3 100644 --- a/flutter_custom_tabs/pubspec.yaml +++ b/flutter_custom_tabs/pubspec.yaml @@ -24,14 +24,14 @@ dependencies: # flutter_custom_tabs_web: ^2.0.0 flutter_custom_tabs_web: path: ../flutter_custom_tabs_web - meta: ^1.9.1 + meta: ^1.10.0 dev_dependencies: flutter_test: sdk: flutter - mockito: ^5.4.2 - flutter_lints: ^2.0.1 - plugin_platform_interface: ^2.1.5 + mockito: ^5.4.4 + flutter_lints: ^3.0.1 + plugin_platform_interface: ^2.1.7 flutter: plugin: diff --git a/flutter_custom_tabs_android/android/build.gradle b/flutter_custom_tabs_android/android/build.gradle index 6601cb5..4a36327 100644 --- a/flutter_custom_tabs_android/android/build.gradle +++ b/flutter_custom_tabs_android/android/build.gradle @@ -49,7 +49,7 @@ android { dependencies { implementation 'androidx.browser:browser:1.5.0' - implementation 'com.github.droibit:customtabslauncher:2.0.0-rc01' + implementation 'com.github.droibit:customtabslauncher:2.0.0' testImplementation 'junit:junit:4.13.2' testImplementation 'org.robolectric:robolectric:4.10.3' diff --git a/flutter_custom_tabs_android/example/android/build.gradle b/flutter_custom_tabs_android/example/android/build.gradle index 1bfe3cf..7e430b1 100644 --- a/flutter_custom_tabs_android/example/android/build.gradle +++ b/flutter_custom_tabs_android/example/android/build.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:8.1.1' + classpath 'com.android.tools.build:gradle:8.1.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } diff --git a/flutter_custom_tabs_android/example/pubspec.yaml b/flutter_custom_tabs_android/example/pubspec.yaml index 8c222e9..0f23acd 100644 --- a/flutter_custom_tabs_android/example/pubspec.yaml +++ b/flutter_custom_tabs_android/example/pubspec.yaml @@ -11,14 +11,14 @@ dependencies: sdk: flutter flutter_custom_tabs_android: path: ../ - dynamic_color: ^1.6.7 + dynamic_color: ^1.7.0 dev_dependencies: integration_test: sdk: flutter flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 flutter: uses-material-design: true diff --git a/flutter_custom_tabs_android/pubspec.yaml b/flutter_custom_tabs_android/pubspec.yaml index 164ec5a..965c134 100644 --- a/flutter_custom_tabs_android/pubspec.yaml +++ b/flutter_custom_tabs_android/pubspec.yaml @@ -23,10 +23,10 @@ dependencies: # flutter_custom_tabs_platform_interface: ^2.0.0 flutter_custom_tabs_platform_interface: path: ../flutter_custom_tabs_platform_interface - meta: ^1.9.1 + meta: ^1.10.0 dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 pigeon: ^17.0.0 \ No newline at end of file diff --git a/flutter_custom_tabs_ios/example/pubspec.yaml b/flutter_custom_tabs_ios/example/pubspec.yaml index 1070fc1..e38c420 100644 --- a/flutter_custom_tabs_ios/example/pubspec.yaml +++ b/flutter_custom_tabs_ios/example/pubspec.yaml @@ -18,7 +18,7 @@ dev_dependencies: sdk: flutter flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 flutter: uses-material-design: true diff --git a/flutter_custom_tabs_ios/ios/Classes/Laucher.swift b/flutter_custom_tabs_ios/ios/Classes/Laucher.swift index bedf93b..defa74b 100644 --- a/flutter_custom_tabs_ios/ios/Classes/Laucher.swift +++ b/flutter_custom_tabs_ios/ios/Classes/Laucher.swift @@ -16,10 +16,9 @@ open class Launcher { dismissStack.append { [weak viewControllerToPresent] in viewControllerToPresent?.dismiss(animated: true) } - topViewController - .present(viewControllerToPresent, animated: true) { - completion?(true) - } + topViewController.present(viewControllerToPresent, animated: true) { + completion?(true) + } } else { completion?(false) } diff --git a/flutter_custom_tabs_ios/pubspec.yaml b/flutter_custom_tabs_ios/pubspec.yaml index f0c7438..830a1b1 100644 --- a/flutter_custom_tabs_ios/pubspec.yaml +++ b/flutter_custom_tabs_ios/pubspec.yaml @@ -14,12 +14,12 @@ dependencies: # flutter_custom_tabs_platform_interface: ^2.0.0 flutter_custom_tabs_platform_interface: path: ../flutter_custom_tabs_platform_interface - meta: ^1.9.1 + meta: ^1.10.0 dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 pigeon: ^17.0.0 flutter: diff --git a/flutter_custom_tabs_platform_interface/pubspec.yaml b/flutter_custom_tabs_platform_interface/pubspec.yaml index 6810db6..d5712d3 100644 --- a/flutter_custom_tabs_platform_interface/pubspec.yaml +++ b/flutter_custom_tabs_platform_interface/pubspec.yaml @@ -10,11 +10,11 @@ environment: dependencies: flutter: sdk: flutter - plugin_platform_interface: ^2.1.5 - meta: ^1.9.1 + meta: ^1.10.0 + plugin_platform_interface: ^2.1.7 dev_dependencies: flutter_test: sdk: flutter mockito: ^5.4.2 - flutter_lints: ^2.0.1 \ No newline at end of file + flutter_lints: ^3.0.1 \ No newline at end of file diff --git a/flutter_custom_tabs_web/example/pubspec.yaml b/flutter_custom_tabs_web/example/pubspec.yaml index 8920c8c..b5eab50 100644 --- a/flutter_custom_tabs_web/example/pubspec.yaml +++ b/flutter_custom_tabs_web/example/pubspec.yaml @@ -18,6 +18,6 @@ dev_dependencies: sdk: flutter integration_test: sdk: flutter - mockito: ^5.4.2 - plugin_platform_interface: ^2.1.5 - flutter_lints: ^2.0.1 + mockito: ^5.4.4 + plugin_platform_interface: ^2.1.7 + flutter_lints: ^3.0.1 diff --git a/flutter_custom_tabs_web/pubspec.yaml b/flutter_custom_tabs_web/pubspec.yaml index 3b94d25..8366d46 100644 --- a/flutter_custom_tabs_web/pubspec.yaml +++ b/flutter_custom_tabs_web/pubspec.yaml @@ -24,11 +24,11 @@ dependencies: # flutter_custom_tabs_platform_interface: ^2.0.0 flutter_custom_tabs_platform_interface: path: ../flutter_custom_tabs_platform_interface - meta: ^1.9.1 - url_launcher_web: ^2.0.16 - url_launcher_platform_interface: ^2.1.2 + meta: ^1.10.0 + url_launcher_web: ^2.0.19 + url_launcher_platform_interface: ^2.2.0 dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1