Skip to content

jorgeblano/filelu-sync-ios

 
 

Repository files navigation

filelusync

A new Flutter project.

Getting Started

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.

3. Check Entitlements for File Access

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.

5. Ensure App Has Correct Capabilities

In Xcode:

  • Open ios/Runner.xcworkspace
  • Go to Signing & Capabilities
  • Add iCloud or File Sharing, if necessary.

6. Reinstall the App

Try uninstalling and reinstalling the app on the real device:

flutter clean
flutter build ios
flutter install

7. Check iOS Deployment Target

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

8. Manually Grant Permissions

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!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 78.3%
  • C++ 10.8%
  • CMake 8.2%
  • Swift 1.5%
  • C 0.6%
  • HTML 0.5%
  • Other 0.1%