Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/app-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ permissions:
jobs:
build_and_deploy_ios:
name: Build and Distribute Dogfooding Ios
runs-on: macos-15
runs-on: xcode-27
timeout-minutes: 60
if: ${{ github.event_name == 'push' || github.event_name == 'release' || inputs.build_ios == true }}
steps:
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1.7.0
with:
xcode-version: "26.3"
xcode-version: "latest"

- name: Setup Flutter
uses: subosito/flutter-action@v2
Expand Down
6 changes: 6 additions & 0 deletions dogfooding/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ post_install do |installer|
'PERMISSION_NOTIFICATIONS=1',
]

# some pods still declare deployment targets below the platform minimum,
# which recent Xcode/simulator SDKs reject outright
deployment_target = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']
if deployment_target && Gem::Version.new(deployment_target) < Gem::Version.new('15.0')
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end
end
Loading