A new Flutter project.
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
If you're uploading folders from outside your app sandbox, you might need iCloud or File Provider entitlements.
Check ios/Runner.entitlements
and make sure you have:
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
This allows users to select files and grant permissions.
In Xcode:
- Open
ios/Runner.xcworkspace
- Go to Signing & Capabilities
- Add iCloud or File Sharing, if necessary.
Try uninstalling and reinstalling the app on the real device:
flutter clean
flutter build ios
flutter install
If your deployment target (ios/Podfile
) is too low, some permissions might not work. Set it to at least iOS 13.0:
platform :ios, '13.0'
Then run:
cd ios && pod install
If iOS is blocking access, try resetting permissions:
xcrun simctl privacy reset all com.your.app.bundleid
Replace com.your.app.bundleid
with your actual Bundle Identifier.
After trying these, let me know what specific error you’re seeing!