From 4d468dd33dd49857f2ade51a80ac7124176aedf5 Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 10:10:40 +0900 Subject: [PATCH 1/9] Update files after flutter clean and pub get --- example/ios/Flutter/Flutter.podspec | 18 ------------------ example/pubspec.lock | 2 +- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 example/ios/Flutter/Flutter.podspec diff --git a/example/ios/Flutter/Flutter.podspec b/example/ios/Flutter/Flutter.podspec deleted file mode 100644 index 3aed58d..0000000 --- a/example/ios/Flutter/Flutter.podspec +++ /dev/null @@ -1,18 +0,0 @@ -# -# This podspec is NOT to be published. It is only used as a local source! -# This is a generated file; do not edit or check into version control. -# - -Pod::Spec.new do |s| - s.name = 'Flutter' - s.version = '1.0.0' - s.summary = 'A UI toolkit for beautiful and fast apps.' - s.homepage = 'https://flutter.dev' - s.license = { :type => 'BSD' } - s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } - s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } - s.ios.deployment_target = '13.0' - # Framework linking is handled by Flutter tooling, not CocoaPods. - # Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs. - s.vendored_frameworks = 'path/to/nothing' -end diff --git a/example/pubspec.lock b/example/pubspec.lock index 7fd7350..cf3229d 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -269,7 +269,7 @@ packages: sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55 url: "https://pub.dev" source: hosted - version: "0.7.8" + version: "0.7.7" typed_data: dependency: transitive description: From c64539ce5ab7dd8d942911b9666d3f6529c08329 Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 10:13:37 +0900 Subject: [PATCH 2/9] Reproduce crash --- example/android/app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index b2d77a7..33f5153 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -61,6 +61,11 @@ android { } } +dependencies { + // クラッシュ再現:okhttpだけ 4.12.0 の場合、logging-interceptorは 3.12.13 のまま + implementation 'com.squareup.okhttp3:okhttp:4.12.0' +} + flutter { source = "../.." } From e28ac0da6874646cd810b71211eee14f975315aa Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 10:16:36 +0900 Subject: [PATCH 3/9] Update android plugin --- sdkconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkconfig.json b/sdkconfig.json index 74a090e..e74931e 100644 --- a/sdkconfig.json +++ b/sdkconfig.json @@ -1,4 +1,4 @@ { "ios": "2.2.1", - "android": "2.2.1" + "android": "2.2.2" } \ No newline at end of file From 3227412b9f6fe3ef579d1d0a32435aa6fe281472 Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 10:17:40 +0900 Subject: [PATCH 4/9] Remove debug code --- example/android/app/build.gradle | 5 ----- 1 file changed, 5 deletions(-) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 33f5153..b2d77a7 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -61,11 +61,6 @@ android { } } -dependencies { - // クラッシュ再現:okhttpだけ 4.12.0 の場合、logging-interceptorは 3.12.13 のまま - implementation 'com.squareup.okhttp3:okhttp:4.12.0' -} - flutter { source = "../.." } From 45637d12b0d67359d9b6d3b7da288d34b176f7b8 Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 12:18:03 +0900 Subject: [PATCH 5/9] CI build check error --- lib/src/payjp.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/payjp.dart b/lib/src/payjp.dart index 508d6ba..bbc397d 100644 --- a/lib/src/payjp.dart +++ b/lib/src/payjp.dart @@ -28,8 +28,8 @@ typedef OnApplePayFailedRequestTokenCallback = FutureOr Function(ErrorInfo errorInfo); typedef OnApplePayCompletedCallback = void Function(); -// ignore: avoid_classes_with_only_static_members /// Provides flutter bridge for PAY.JP. +// ignore: avoid_classes_with_only_static_members class Payjp { static OnCardFormCanceledCallback? _onCardFormCanceledCallback; static OnCardFormCompletedCallback? _onCardFormCompletedCallback; From 7040d0d202fdc81d74cfd8d1a4df8524de0faa93 Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 12:26:54 +0900 Subject: [PATCH 6/9] Update file --- example/ios/Flutter/Flutter.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 example/ios/Flutter/Flutter.podspec diff --git a/example/ios/Flutter/Flutter.podspec b/example/ios/Flutter/Flutter.podspec new file mode 100644 index 0000000..3aed58d --- /dev/null +++ b/example/ios/Flutter/Flutter.podspec @@ -0,0 +1,18 @@ +# +# This podspec is NOT to be published. It is only used as a local source! +# This is a generated file; do not edit or check into version control. +# + +Pod::Spec.new do |s| + s.name = 'Flutter' + s.version = '1.0.0' + s.summary = 'A UI toolkit for beautiful and fast apps.' + s.homepage = 'https://flutter.dev' + s.license = { :type => 'BSD' } + s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } + s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } + s.ios.deployment_target = '13.0' + # Framework linking is handled by Flutter tooling, not CocoaPods. + # Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs. + s.vendored_frameworks = 'path/to/nothing' +end From 829baca14b7ff30dfec29f9cdf4b356a78ce8ffc Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 13:09:22 +0900 Subject: [PATCH 7/9] Add: Update Android cmdline-tools --- .github/workflows/build-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 852bd2d..ceadbde 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -71,6 +71,8 @@ jobs: # build app - name: Build android app run: make build-android-example + - name: Update Android cmdline-tools + run: yes | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager "cmdline-tools;latest" - name: Run e2e test on Android Emulator uses: reactivecircus/android-emulator-runner@v2 with: From c15e61f4e1aff852e925c087d2d51c92051aac9b Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 17:25:38 +0900 Subject: [PATCH 8/9] Update ios sdk --- example/android/gradle.properties | 4 ++ example/ios/Flutter/AppFrameworkInfo.plist | 2 - example/ios/Podfile.lock | 42 ++++++++----------- example/ios/Runner.xcodeproj/project.pbxproj | 30 ++++++++++++- .../xcshareddata/xcschemes/Runner.xcscheme | 18 ++++++++ example/pubspec.lock | 20 ++++----- ios/payjp_flutter.podspec | 2 +- sdkconfig.json | 2 +- 8 files changed, 80 insertions(+), 40 deletions(-) diff --git a/example/android/gradle.properties b/example/android/gradle.properties index bef91f4..f45bf9e 100644 --- a/example/android/gradle.properties +++ b/example/android/gradle.properties @@ -32,3 +32,7 @@ android.enableJetifier=true android.defaults.buildfeatures.buildconfig=true android.nonTransitiveRClass=false android.nonFinalResIds=false +# This builtInKotlin flag was added automatically by Flutter migrator +android.builtInKotlin=false +# This newDsl flag was added automatically by Flutter migrator +android.newDsl=false diff --git a/example/ios/Flutter/AppFrameworkInfo.plist b/example/ios/Flutter/AppFrameworkInfo.plist index d57061d..ab8e063 100644 --- a/example/ios/Flutter/AppFrameworkInfo.plist +++ b/example/ios/Flutter/AppFrameworkInfo.plist @@ -20,7 +20,5 @@ ???? CFBundleVersion 1.0 - MinimumOSVersion - 13.0 diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index f93ae25..497ed9a 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,44 +1,41 @@ PODS: - Flutter (1.0.0) - - GoogleUtilities/AppDelegateSwizzler (8.0.2): + - GoogleUtilities/AppDelegateSwizzler (8.1.0): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - GoogleUtilities/Privacy - - GoogleUtilities/Environment (8.0.2): + - GoogleUtilities/Environment (8.1.0): - GoogleUtilities/Privacy - - GoogleUtilities/Logger (8.0.2): + - GoogleUtilities/Logger (8.1.0): - GoogleUtilities/Environment - GoogleUtilities/Privacy - - GoogleUtilities/Network (8.0.2): + - GoogleUtilities/Network (8.1.0): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Privacy - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (8.0.2)": + - "GoogleUtilities/NSData+zlib (8.1.0)": - GoogleUtilities/Privacy - - GoogleUtilities/Privacy (8.0.2) - - GoogleUtilities/Reachability (8.0.2): + - GoogleUtilities/Privacy (8.1.0) + - GoogleUtilities/Reachability (8.1.0): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - integration_test (0.0.1): - - Flutter - payjp_flutter (0.7.8): - Flutter - GoogleUtilities/AppDelegateSwizzler (~> 8) - - PAYJPFlutterCore (~> 2.2.1) - - PAYJPFlutterCore (2.2.1): + - PAYJPFlutterCore (~> 2.2.3) + - PAYJPFlutterCore (2.2.3): - PhoneNumberKit (~> 4.0.0) - - PhoneNumberKit (4.0.1): - - PhoneNumberKit/PhoneNumberKitCore (= 4.0.1) - - PhoneNumberKit/UIKit (= 4.0.1) - - PhoneNumberKit/PhoneNumberKitCore (4.0.1) - - PhoneNumberKit/UIKit (4.0.1): + - PhoneNumberKit (4.0.3): + - PhoneNumberKit/PhoneNumberKitCore (= 4.0.3) + - PhoneNumberKit/UIKit (= 4.0.3) + - PhoneNumberKit/PhoneNumberKitCore (4.0.3) + - PhoneNumberKit/UIKit (4.0.3): - PhoneNumberKit/PhoneNumberKitCore DEPENDENCIES: - Flutter (from `Flutter`) - - integration_test (from `.symlinks/plugins/integration_test/ios`) - payjp_flutter (from `.symlinks/plugins/payjp_flutter/ios`) SPEC REPOS: @@ -50,18 +47,15 @@ SPEC REPOS: EXTERNAL SOURCES: Flutter: :path: Flutter - integration_test: - :path: ".symlinks/plugins/integration_test/ios" payjp_flutter: :path: ".symlinks/plugins/payjp_flutter/ios" SPEC CHECKSUMS: Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467 - GoogleUtilities: 26a3abef001b6533cf678d3eb38fd3f614b7872d - integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e - payjp_flutter: f27a9c31f580d135e21621f2b92235d850efa8ed - PAYJPFlutterCore: 23ef3f4e66075b0069b9dbca495b1fa488ee8f5d - PhoneNumberKit: a74155066daa6450475f6a029068eb919fb00d5d + GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1 + payjp_flutter: 716be1dd9142369b31e076d5bd3423211049027c + PAYJPFlutterCore: 641c84041d89a0a283ac58fdc5bd280ddd94d4cb + PhoneNumberKit: 1695265e1dbce1d0516418ca10f32d1ba6700b5d PODFILE CHECKSUM: cc1f88378b4bfcf93a6ce00d2c587857c6008d3b diff --git a/example/ios/Runner.xcodeproj/project.pbxproj b/example/ios/Runner.xcodeproj/project.pbxproj index d89c6c4..a2e65cb 100644 --- a/example/ios/Runner.xcodeproj/project.pbxproj +++ b/example/ios/Runner.xcodeproj/project.pbxproj @@ -12,6 +12,7 @@ 3549BBA93F0DEEE384410E5B /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 16A34D07EA5E2DC1FD672EC0 /* Pods_Runner.framework */; }; 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; }; 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; @@ -42,6 +43,9 @@ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 784666492D4C4C64000A1A5F /* FlutterFramework */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterFramework; path = Flutter/ephemeral/Packages/.packages/FlutterFramework; sourceTree = ""; }; + 78DABEA22ED26510000E7860 /* payjp_flutter */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = payjp_flutter; path = ../../ios/payjp_flutter; sourceTree = ""; }; + 78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; @@ -59,6 +63,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */, 3549BBA93F0DEEE384410E5B /* Pods_Runner.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -69,6 +74,9 @@ 9740EEB11CF90186004384FC /* Flutter */ = { isa = PBXGroup; children = ( + 78DABEA22ED26510000E7860 /* payjp_flutter */, + 784666492D4C4C64000A1A5F /* FlutterFramework */, + 78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */, 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 9740EEB21CF90195004384FC /* Debug.xcconfig */, 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, @@ -160,6 +168,9 @@ dependencies = ( ); name = Runner; + packageProductDependencies = ( + 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */, + ); productName = Runner; productReference = 97C146EE1CF9000F007C117D /* Runner.app */; productType = "com.apple.product-type.application"; @@ -191,6 +202,9 @@ ja, ); mainGroup = 97C146E51CF9000F007C117D; + packageReferences = ( + 781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "FlutterGeneratedPluginSwiftPackage" */, + ); productRefGroup = 97C146EF1CF9000F007C117D /* Products */; projectDirPath = ""; projectRoot = ""; @@ -227,14 +241,12 @@ "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework", "${BUILT_PRODUCTS_DIR}/PAYJPFlutterCore/PAYJP.framework", "${BUILT_PRODUCTS_DIR}/PhoneNumberKit/PhoneNumberKit.framework", - "${BUILT_PRODUCTS_DIR}/integration_test/integration_test.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PAYJP.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PhoneNumberKit.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/integration_test.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -624,6 +636,20 @@ defaultConfigurationName = Release; }; /* End XCConfigurationList section */ + +/* Begin XCLocalSwiftPackageReference section */ + 781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "FlutterGeneratedPluginSwiftPackage" */ = { + isa = XCLocalSwiftPackageReference; + relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; + }; +/* End XCLocalSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = { + isa = XCSwiftPackageProductDependency; + productName = FlutterGeneratedPluginSwiftPackage; + }; +/* End XCSwiftPackageProductDependency section */ }; rootObject = 97C146E61CF9000F007C117D /* Project object */; } diff --git a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index fc5ae03..0bd6d42 100644 --- a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -5,6 +5,24 @@ + + + + + + + + + + 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } - s.ios.deployment_target = '10.0' + s.ios.deployment_target = '12.0' end diff --git a/sdkconfig.json b/sdkconfig.json index e74931e..9fe88ab 100644 --- a/sdkconfig.json +++ b/sdkconfig.json @@ -1,4 +1,4 @@ { - "ios": "2.2.1", + "ios": "2.2.3", "android": "2.2.2" } \ No newline at end of file From 3796d9ea1133096c9d5782de808b1ca33d94236c Mon Sep 17 00:00:00 2001 From: bu-tokumitsu Date: Wed, 10 Jun 2026 18:31:43 +0900 Subject: [PATCH 9/9] Update example integration_test --- example/ios/Podfile.lock | 6 ++++++ example/ios/Runner.xcodeproj/project.pbxproj | 2 ++ example/pubspec.lock | 20 ++++++++++---------- 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 497ed9a..977cbc5 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -21,6 +21,8 @@ PODS: - GoogleUtilities/Reachability (8.1.0): - GoogleUtilities/Logger - GoogleUtilities/Privacy + - integration_test (0.0.1): + - Flutter - payjp_flutter (0.7.8): - Flutter - GoogleUtilities/AppDelegateSwizzler (~> 8) @@ -36,6 +38,7 @@ PODS: DEPENDENCIES: - Flutter (from `Flutter`) + - integration_test (from `.symlinks/plugins/integration_test/ios`) - payjp_flutter (from `.symlinks/plugins/payjp_flutter/ios`) SPEC REPOS: @@ -47,12 +50,15 @@ SPEC REPOS: EXTERNAL SOURCES: Flutter: :path: Flutter + integration_test: + :path: ".symlinks/plugins/integration_test/ios" payjp_flutter: :path: ".symlinks/plugins/payjp_flutter/ios" SPEC CHECKSUMS: Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467 GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1 + integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e payjp_flutter: 716be1dd9142369b31e076d5bd3423211049027c PAYJPFlutterCore: 641c84041d89a0a283ac58fdc5bd280ddd94d4cb PhoneNumberKit: 1695265e1dbce1d0516418ca10f32d1ba6700b5d diff --git a/example/ios/Runner.xcodeproj/project.pbxproj b/example/ios/Runner.xcodeproj/project.pbxproj index a2e65cb..83f7dac 100644 --- a/example/ios/Runner.xcodeproj/project.pbxproj +++ b/example/ios/Runner.xcodeproj/project.pbxproj @@ -241,12 +241,14 @@ "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework", "${BUILT_PRODUCTS_DIR}/PAYJPFlutterCore/PAYJP.framework", "${BUILT_PRODUCTS_DIR}/PhoneNumberKit/PhoneNumberKit.framework", + "${BUILT_PRODUCTS_DIR}/integration_test/integration_test.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PAYJP.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PhoneNumberKit.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/integration_test.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; diff --git a/example/pubspec.lock b/example/pubspec.lock index c18c44e..cf3229d 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -37,10 +37,10 @@ packages: dependency: transitive description: name: characters - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b + sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 url: "https://pub.dev" source: hosted - version: "1.4.1" + version: "1.4.0" clock: dependency: transitive description: @@ -158,26 +158,26 @@ packages: dependency: transitive description: name: matcher - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861 + sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 url: "https://pub.dev" source: hosted - version: "0.12.19" + version: "0.12.17" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b" + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec url: "https://pub.dev" source: hosted - version: "0.13.0" + version: "0.11.1" meta: dependency: transitive description: name: meta - sha256: "1741988757a65eb6b36abe716829688cf01910bbf91c34354ff7ec1c3de2b349" + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" url: "https://pub.dev" source: hosted - version: "1.18.0" + version: "1.17.0" path: dependency: transitive description: @@ -266,10 +266,10 @@ packages: dependency: transitive description: name: test_api - sha256: "949a932224383300f01be9221c39180316445ecb8e7547f70a41a35bf421fb9e" + sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55 url: "https://pub.dev" source: hosted - version: "0.7.11" + version: "0.7.7" typed_data: dependency: transitive description: