Skip to content

Commit

Permalink
Merge pull request #103 from MXCzkEVM/bug_fix
Browse files Browse the repository at this point in the history
Bug fix
  • Loading branch information
reasje authored Nov 13, 2024
2 parents c9bb608 + ac4f118 commit 4b581af
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4b581af

Please sign in to comment.