From 6566b099bc861972a9d0d86fe2adcf2b1494ea3b Mon Sep 17 00:00:00 2001 From: reasje Date: Wed, 13 Nov 2024 12:16:02 +0330 Subject: [PATCH 1/2] Fix: Update FB sdk to latest privacy manifest --- .../appinio_social_share/ios/appinio_social_share.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/appinio_social_share/ios/appinio_social_share.podspec b/packages/appinio_social_share/ios/appinio_social_share.podspec index 6abd67ab..ad9ed6c8 100644 --- a/packages/appinio_social_share/ios/appinio_social_share.podspec +++ b/packages/appinio_social_share/ios/appinio_social_share.podspec @@ -16,8 +16,8 @@ A new Flutter project. s.source_files = 'Classes/**/*' s.dependency 'Flutter' s.dependency 'TikTokOpenSDK', '5.0.14' - s.dependency 'FBSDKCoreKit', '17.0.0' - s.dependency 'FBSDKShareKit', '17.0.0' + s.dependency 'FBSDKCoreKit', '17.0.1' + s.dependency 'FBSDKShareKit', '17.0.1' s.static_framework = true s.platform = :ios, '9.0' From ac4f1189e4d6f257e4e7e55e28b0f22474136510 Mon Sep 17 00:00:00 2001 From: reasje Date: Wed, 13 Nov 2024 12:30:31 +0330 Subject: [PATCH 2/2] fix: Run reinstall pods to update --- .github/workflows/compile.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index bfb3a14d..995c90fa 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -15,6 +15,36 @@ jobs: with: submodules: 'recursive' + - 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 + echo "Contents of Current Directory:" + ls -la - name: Set Version Code run: |