We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d719767 commit 87fe149Copy full SHA for 87fe149
.github/workflows/permission_handler_apple.yaml
@@ -66,8 +66,24 @@ jobs:
66
run: |
67
if [ "${{ matrix.dependency-manager }}" = "spm" ]; then
68
flutter config --enable-swift-package-manager
69
+ # Remove CocoaPods integration for pure SPM testing
70
+ cd ${{env.example-directory}}/ios
71
+ if [ -f Podfile ]; then
72
+ rm -f Podfile
73
+ fi
74
+ if [ -f Podfile.lock ]; then
75
+ rm -f Podfile.lock
76
77
+ if [ -d Pods ]; then
78
+ rm -rf Pods
79
80
else
81
flutter config --no-enable-swift-package-manager
82
+ # Restore Podfile for CocoaPods testing
83
84
+ if [ -f Podfile.backup ]; then
85
+ cp Podfile.backup Podfile
86
87
fi
88
89
# Build iOS version of the example App
0 commit comments