Update iOS, Android SDK - #108
Merged
koutaku921 merged 10 commits intoJun 15, 2026
Merged
Conversation
bu-tokumitsu
commented
Jun 12, 2026
| s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } | ||
|
|
||
| s.ios.deployment_target = '10.0' | ||
| s.ios.deployment_target = '12.0' |
Contributor
Author
There was a problem hiding this comment.
ここはPAYJP - iOSの IOS_DEPLOYMENT_TARGET に合わせています
bu-tokumitsu
marked this pull request as ready for review
June 12, 2026 02:43
koutaku921
approved these changes
Jun 15, 2026
koutaku921
left a comment
Contributor
There was a problem hiding this comment.
有識者レビューが完了したので、masterマージのため改めてapproveします。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
logging-interceptorとの依存関係が壊れてカードのページを開く際にクラッシュが発生していましたokhttp-bomを加えることで回避も可能ですが、根本解決ではないのでAndroid SDKのOkHttpの更新を行いました3.12.13から4.12.0に更新する改修を加えたので、参照するAndroid SDKの更新になりますFLUTTER_CHANNEL: stableが指定されているので現時点のstable(Flutter v3.44.1)に合わせていくつかファイルの変更が入っていますiOS動作確認
Android動作確認、依存関係の確認
前提条件
flutter clean && flutter pub getを実行して確認依存関係の確認方法
./gradlew :app:dependencies --configuration releaseRuntimeClasspath | grep -E "jp.pay:payjp-android|com.squareup.okhttp3"クラッシュ再現( c64539c )
クラッシュ発生時の依存関係、PAY Android SDK(v2.2.1)+ OkHttp(v4.12.0)
logging-interceptorのみv3.12.13のままの為、カードViewを開くタイミングでクラッシュします
Android SDK v2.2.2へ更新後
logging-interceptorも4.12.0に更新される為、クラッシュは発生しません
CI Build and Test