Open reasje opened 1 week ago
Dev log: After the update I was not able to run it on IOS because recently I have updated my Mac and to the 18.1 version of IOS and therefore xcode trying to run the app runs into long list of errors and warnings. Looks like with current Flutter version we are not able to support ios 18 .
Dev log : I was able to update pods cache on github action with these steps:
- name: Check flutter found
id: check_flutter
shell: bash
run: |
if flutter --version; then
echo "installed=true" >> "$GITHUB_OUTPUT"
else
echo "installed=false" >> "$GITHUB_OUTPUT"
fi
- name: Setup flutter
if: steps.check_flutter.outputs.installed == 'false'
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: '3.7.12'
cache: true
# Step to clear CocoaPods cache and reinstall pods
- name: Reinstall CocoaPods
run: |
flutter pub get
cd ios
echo "Current Directory:"
pwd
echo "Contents of Current Directory:"
ls -la
pod install --repo-update
cc: @sheenhx