diff --git a/.metadata b/.metadata index 534977f..0168d62 100644 --- a/.metadata +++ b/.metadata @@ -4,7 +4,7 @@ # This file should be version controlled and should not be manually edited. version: - revision: "adc901062556672b4138e18a4dc62a4be8f4b3c2" + revision: "a0e9b9dbf78c8a5ef39b45a7efd40ed2de19c1a7" channel: "stable" project_type: app @@ -13,17 +13,11 @@ project_type: app migration: platforms: - platform: root - create_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - base_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - - platform: android - create_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - base_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - - platform: ios - create_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - base_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - - platform: web - create_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 - base_revision: adc901062556672b4138e18a4dc62a4be8f4b3c2 + create_revision: a0e9b9dbf78c8a5ef39b45a7efd40ed2de19c1a7 + base_revision: a0e9b9dbf78c8a5ef39b45a7efd40ed2de19c1a7 + - platform: macos + create_revision: a0e9b9dbf78c8a5ef39b45a7efd40ed2de19c1a7 + base_revision: a0e9b9dbf78c8a5ef39b45a7efd40ed2de19c1a7 # User provided section diff --git a/CHECKLIST.md b/CHECKLIST.md new file mode 100644 index 0000000..e2d305c --- /dev/null +++ b/CHECKLIST.md @@ -0,0 +1,293 @@ +# Plan B Logistics Flutter App - Implementation Checklist + +## Core Architecture & Setup + +- [x] CQRS API client with Result pattern +- [x] Strict typing (no `dynamic` or untyped `var`) +- [x] Serializable interface for all models +- [x] Error handling with ApiError types +- [x] HTTP client configuration +- [x] API base URLs (query and command endpoints) +- [x] Riverpod state management setup +- [x] Provider architecture +- [x] Responsive utilities and breakpoints +- [x] Theme configuration (Svrnty design system) +- [x] Material Design 3 implementation +- [x] Dark and light themes + +## Authentication & Authorization + +- [x] Password Credentials OAuth2 flow with Keycloak +- [x] Username/password login form +- [x] JWT token management +- [x] Secure token storage (flutter_secure_storage) +- [x] Token validation and expiration checking +- [x] User profile decoding from JWT +- [x] Authentication guard in main.dart +- [x] Login page UI with form validation +- [ ] Automatic token refresh on expiration +- [ ] Handle 401 responses with token refresh retry +- [ ] Implement logout with token revocation + +## Data Models + +- [x] Delivery model +- [x] DeliveryRoute model (updated to match API) +- [x] DeliveryAddress model +- [x] DeliveryContact model +- [x] DeliveryOrder model +- [x] UserInfo model +- [x] UserProfile model +- [x] Command models (CompleteDelivery, MarkAsUncompleted, etc.) +- [x] Query models with Serializable +- [x] All models implement fromJson/toJson + +## API Integration + +- [x] Remove mock data from providers +- [x] Get delivery routes endpoint +- [x] Get deliveries by route endpoint +- [x] Complete delivery command endpoint +- [x] Mark delivery as uncompleted endpoint +- [x] Bearer token injection in API requests +- [x] Query parameter serialization +- [ ] Upload delivery picture endpoint +- [ ] Skip delivery command endpoint +- [ ] Implement pagination for routes +- [ ] Implement pagination for deliveries +- [ ] Add pull-to-refresh functionality +- [ ] Implement retry logic for failed requests + +## Pages & UI Components + +### Completed Pages +- [x] Login page with username/password +- [x] Routes page (list/grid view) +- [x] Deliveries page (To Do/Delivered segments) +- [x] Settings page + +### Pending Pages +- [ ] Delivery details page +- [ ] Photo capture/upload page +- [ ] Error pages (network error, not found, etc.) + +### UI Components +- [x] Route card with progress indicator +- [x] Delivery card with status chips +- [x] Bottom sheet for delivery actions +- [x] User profile menu +- [x] Language selector +- [x] Responsive grid/list layouts +- [ ] Extract reusable components to lib/components/ +- [ ] Create DeliveryCard component +- [ ] Create RouteCard component +- [ ] Create CustomAppBar component +- [ ] Create LoadingIndicator component +- [ ] Create ErrorView component +- [ ] Create EmptyStateView component + +## Features + +### Completed Features +- [x] Phone call integration (url_launcher) +- [x] Maps/navigation integration (Google Maps) +- [x] Mark delivery as completed +- [x] Mark delivery as uncompleted +- [x] Language switching (EN/FR) +- [x] Responsive design (mobile/tablet/desktop) +- [x] Pull-to-refresh on routes page + +### Pending Features +- [ ] Photo upload for delivery proof +- [ ] Skip delivery with reason +- [ ] View delivery photos +- [ ] Delivery history/timeline +- [ ] Offline mode support +- [ ] Cache management +- [ ] Push notifications +- [ ] Delivery signatures +- [ ] Barcode/QR code scanning + +## Internationalization (i18n) + +- [x] ARB files setup (English and French) +- [x] 68+ translation keys defined +- [x] Parameterized strings support +- [x] Language provider in state management +- [ ] Replace ALL hardcoded strings in UI with translations + - [ ] Login page strings + - [ ] Routes page strings + - [ ] Deliveries page strings + - [ ] Settings page strings + - [ ] Error messages + - [ ] Button labels + - [ ] Form validation messages +- [ ] Test language switching in all screens + +## Error Handling & UX + +- [x] Basic error display with SnackBar +- [x] Loading states in providers +- [ ] Comprehensive error handling UI +- [ ] Specific error messages for different ApiErrorType +- [ ] Network connectivity detection +- [ ] Offline mode indicators +- [ ] Retry strategies with exponential backoff +- [ ] Error recovery flows +- [ ] User-friendly error messages +- [ ] Toast notifications for success/error + +## Routing & Navigation + +- [x] Basic Navigator.push navigation +- [x] Route parameters passing +- [ ] Configure GoRouter +- [ ] Named routes +- [ ] Deep linking support +- [ ] Route guards for authentication +- [ ] Handle back navigation properly +- [ ] Navigation animations/transitions + +## Native Features + +- [x] Phone calls with url_launcher +- [x] Maps integration with url_launcher +- [ ] Camera access with image_picker +- [ ] Photo gallery access +- [ ] File system access for photos +- [ ] Location services +- [ ] Background location tracking +- [ ] Local notifications + +## Testing + +- [ ] Unit tests for AuthService +- [ ] Unit tests for CqrsApiClient +- [ ] Unit tests for data models +- [ ] Provider tests with ProviderContainer +- [ ] Widget tests for LoginPage +- [ ] Widget tests for RoutesPage +- [ ] Widget tests for DeliveriesPage +- [ ] Widget tests for SettingsPage +- [ ] Integration tests for auth flow +- [ ] Integration tests for delivery flow +- [ ] Golden tests for UI components +- [ ] Achieve >80% code coverage + +## Build Configuration + +- [ ] Set up build flavors (dev, staging, prod) +- [ ] Environment-specific configurations +- [ ] API URL configuration per environment +- [ ] App signing for iOS +- [ ] App signing for Android +- [ ] Build scripts for CI/CD +- [ ] Icon and splash screen configuration +- [ ] Version management +- [ ] Build number automation + +## Performance Optimization + +- [ ] Image caching (cached_network_image) +- [ ] List virtualization optimizations +- [ ] Lazy loading for deliveries +- [ ] Pagination implementation +- [ ] Memory leak detection +- [ ] App size optimization +- [ ] Startup time optimization +- [ ] Frame rate monitoring + +## Documentation + +- [x] CLAUDE.md project instructions +- [x] README.md with project overview +- [ ] API documentation +- [ ] Component documentation +- [ ] Architecture documentation +- [ ] Deployment guide +- [ ] User manual +- [ ] Developer onboarding guide + +## Security + +- [x] Secure token storage +- [x] No hardcoded secrets in code (client_secret removed) +- [x] Public client configuration (no client secret in frontend) +- [ ] Certificate pinning +- [ ] Encryption for sensitive data +- [ ] Obfuscation for production builds +- [ ] Security audit +- [ ] Penetration testing +- [ ] OWASP compliance check + +## Deployment + +- [ ] iOS App Store submission +- [ ] Android Play Store submission +- [ ] Internal testing distribution +- [ ] Beta testing program +- [ ] Production release +- [ ] Crash reporting (Sentry, Firebase Crashlytics) +- [ ] Analytics integration (Firebase Analytics) +- [ ] Remote configuration + +## Known Issues to Fix + +- [ ] Fix macOS secure storage error (-34018) +- [ ] Update AppAuth deployment target (10.12 -> 10.13) +- [ ] Handle "Failed to foreground app" warning +- [ ] Add proper error boundaries +- [ ] Fix any linter warnings + +## Production Blockers (Critical) + +- [x] ~~Authentication disabled~~ (FIXED) +- [x] ~~Using mock data~~ (FIXED) +- [ ] Photo upload not implemented +- [ ] Limited error handling +- [ ] No tests written +- [ ] Hardcoded strings instead of i18n +- [ ] No offline support + +## Priority Levels + +### HIGH PRIORITY (Must have for v1.0) +1. Replace hardcoded strings with i18n translations +2. Implement photo upload feature +3. Create delivery details page +4. Add comprehensive error handling +5. Write critical unit and widget tests +6. Implement automatic token refresh +7. Add skip delivery feature + +### MEDIUM PRIORITY (Should have for v1.0) +1. Configure GoRouter with named routes +2. Extract reusable components +3. Implement pagination +4. Add offline mode indicators +5. Set up build flavors +6. Add image caching + +### LOW PRIORITY (Nice to have for v1.0) +1. Performance optimizations +2. Golden tests +3. Enhanced animations +4. Advanced features (signatures, barcodes) +5. Push notifications + +## Version History + +### v0.1.0 (Current) +- Core architecture implemented +- Real API integration completed +- Authentication with Keycloak working +- Basic UI for routes and deliveries +- Phone and maps integration + +### v1.0.0 (Target) +- All production blockers resolved +- Complete i18n implementation +- Photo upload working +- Comprehensive error handling +- Test coverage >80% +- Ready for App Store/Play Store submission diff --git a/GOOGLE_MAPS_SETUP.md b/GOOGLE_MAPS_SETUP.md new file mode 100644 index 0000000..6efa59c --- /dev/null +++ b/GOOGLE_MAPS_SETUP.md @@ -0,0 +1,140 @@ +# Google Maps API Setup Guide + +This guide will help you configure Google Maps API keys for the Plan B Logistics app across different platforms. + +## Prerequisites + +1. Go to [Google Cloud Console](https://console.cloud.google.com/) +2. Create a new project or select an existing one +3. Enable the following APIs: + - Maps SDK for Android + - Maps SDK for iOS + - Maps JavaScript API (for web) + +## Get Your API Key + +1. Go to [Google Cloud Console - Credentials](https://console.cloud.google.com/apis/credentials) +2. Click "Create Credentials" > "API Key" +3. Copy the API key +4. **IMPORTANT**: Restrict your API key by platform and add restrictions + +## Platform-Specific Configuration + +### Android + +1. Open `android/app/src/main/AndroidManifest.xml` +2. Add the following inside the `` tag: + +```xml + +``` + +### iOS + +1. Open `ios/Runner/AppDelegate.swift` +2. Import GoogleMaps at the top: + +```swift +import GoogleMaps +``` + +3. Add the following in the `application` method before `GeneratedPluginRegistrant.register(with: self)`: + +```swift +GMSServices.provideAPIKey("YOUR_IOS_API_KEY") +``` + +### Web + +1. Open `web/index.html` +2. Add the following script tag in the `` section: + +```html + +``` + +### macOS + +1. Open `macos/Runner/AppDelegate.swift` +2. Import GoogleMaps at the top: + +```swift +import GoogleMaps +``` + +3. Add the following in the `applicationDidFinishLaunching` method: + +```swift +GMSServices.provideAPIKey("YOUR_MACOS_API_KEY") +``` + +## API Key Restrictions (Recommended) + +For security, restrict your API keys by platform: + +### Android API Key +- Application restrictions: Android apps +- Add your package name: `com.goutezplanb.planb_logistic` +- Add SHA-1 certificate fingerprint + +### iOS API Key +- Application restrictions: iOS apps +- Add your bundle identifier: `com.goutezplanb.planb-logistic` + +### Web API Key +- Application restrictions: HTTP referrers +- Add your domain: `https://yourdomain.com/*` + +### macOS API Key +- Application restrictions: macOS apps (if available, otherwise use iOS restrictions) + +## Security Best Practices + +1. **Never commit API keys to Git**: Add them to `.gitignore` or use environment variables +2. **Use different keys per platform**: This helps track usage and limit damage if a key is compromised +3. **Set up billing alerts**: Monitor API usage to avoid unexpected costs +4. **Enable only required APIs**: Disable unused APIs to reduce attack surface + +## Environment Variables (Optional) + +For better security, you can use environment variables or secret management: + +1. Create a `.env` file (add to `.gitignore`) +2. Store API keys there +3. Use a package like `flutter_dotenv` to load them at runtime + +## Testing + +After configuration: + +1. Restart your Flutter app +2. Navigate to a delivery route +3. The map should load with markers showing delivery locations +4. If you see a blank map or errors, check: + - API key is correctly configured + - Required APIs are enabled in Google Cloud Console + - No console errors in DevTools + +## Troubleshooting + +### Map shows but is gray +- Check if the API key is valid +- Verify billing is enabled on your Google Cloud project + +### "This page can't load Google Maps correctly" +- API key restrictions might be too strict +- Check the browser console for specific error messages + +### Markers don't appear +- Verify delivery addresses have valid latitude/longitude +- Check browser/app console for JavaScript errors + +## Cost Management + +Google Maps offers a generous free tier: +- $200 free credit per month +- Approximately 28,000 map loads per month free + +Monitor your usage at: [Google Cloud Console - Billing](https://console.cloud.google.com/billing) diff --git a/ios/Podfile b/ios/Podfile index 620e46e..fad4db7 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,5 +1,5 @@ # Uncomment this line to define a global platform for your project -# platform :ios, '13.0' +platform :ios, '16.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 0000000..84c20ce --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,88 @@ +PODS: + - AppAuth (1.7.5): + - AppAuth/Core (= 1.7.5) + - AppAuth/ExternalUserAgent (= 1.7.5) + - AppAuth/Core (1.7.5) + - AppAuth/ExternalUserAgent (1.7.5): + - AppAuth/Core + - Flutter (1.0.0) + - flutter_appauth (0.0.1): + - AppAuth (= 1.7.5) + - Flutter + - flutter_secure_storage (6.0.0): + - Flutter + - google_navigation_flutter (0.0.1): + - Flutter + - GoogleNavigation (= 10.0.0) + - GoogleMaps (10.0.0): + - GoogleMaps/Maps (= 10.0.0) + - GoogleMaps/Maps (10.0.0) + - GoogleNavigation (10.0.0): + - GoogleMaps (= 10.0.0) + - image_picker_ios (0.0.1): + - Flutter + - path_provider_foundation (0.0.1): + - Flutter + - FlutterMacOS + - permission_handler_apple (9.3.0): + - Flutter + - shared_preferences_foundation (0.0.1): + - Flutter + - FlutterMacOS + - url_launcher_ios (0.0.1): + - Flutter + +DEPENDENCIES: + - Flutter (from `Flutter`) + - flutter_appauth (from `.symlinks/plugins/flutter_appauth/ios`) + - flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`) + - google_navigation_flutter (from `.symlinks/plugins/google_navigation_flutter/ios`) + - image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`) + - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`) + - permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`) + - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) + - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) + +SPEC REPOS: + trunk: + - AppAuth + - GoogleMaps + - GoogleNavigation + +EXTERNAL SOURCES: + Flutter: + :path: Flutter + flutter_appauth: + :path: ".symlinks/plugins/flutter_appauth/ios" + flutter_secure_storage: + :path: ".symlinks/plugins/flutter_secure_storage/ios" + google_navigation_flutter: + :path: ".symlinks/plugins/google_navigation_flutter/ios" + image_picker_ios: + :path: ".symlinks/plugins/image_picker_ios/ios" + path_provider_foundation: + :path: ".symlinks/plugins/path_provider_foundation/darwin" + permission_handler_apple: + :path: ".symlinks/plugins/permission_handler_apple/ios" + shared_preferences_foundation: + :path: ".symlinks/plugins/shared_preferences_foundation/darwin" + url_launcher_ios: + :path: ".symlinks/plugins/url_launcher_ios/ios" + +SPEC CHECKSUMS: + AppAuth: 501c04eda8a8d11f179dbe8637b7a91bb7e5d2fa + Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467 + flutter_appauth: 273bf736e38f7d85000b1a9ac15ace5800c277f2 + flutter_secure_storage: 1ed9476fba7e7a782b22888f956cce43e2c62f13 + google_navigation_flutter: aff5e273b19113b8964780ff4e899f6f2e07f6dc + GoogleMaps: 9ce9c898074e96655acaf1ba5d6f85991ecee7a3 + GoogleNavigation: 963899162709d245f07a65cd68c3115292ee2bdb + image_picker_ios: e0ece4aa2a75771a7de3fa735d26d90817041326 + path_provider_foundation: bb55f6dbba17d0dccd6737fe6f7f34fbd0376880 + permission_handler_apple: 4ed2196e43d0651e8ff7ca3483a069d469701f2d + shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb + url_launcher_ios: 7a95fa5b60cc718a708b8f2966718e93db0cef1b + +PODFILE CHECKSUM: 1857a7cdb7dfafe45f2b0e9a9af44644190f7506 + +COCOAPODS: 1.16.2 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 96d0084..bdb6946 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -8,12 +8,14 @@ /* Begin PBXBuildFile section */ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 2836CDC5AEBAD3AEED75A3A3 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84ED75BB9A45F74F2849E366 /* Pods_RunnerTests.framework */; }; 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; + F19CB96FD01EABE54F784DB8 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD204FE7CB10350F4E43E8C8 /* Pods_Runner.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -40,14 +42,20 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ + 13867C66F1703482B503520B /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 275FA98EBEF1D87C21AA0A3A /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 65116C16D7DB0EAA5A1DF663 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 77C9A4AE9C5588D9B699F74C /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 7DC868389DCA23AC494EC5EE /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + 84ED75BB9A45F74F2849E366 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -55,19 +63,39 @@ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DD204FE7CB10350F4E43E8C8 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F864EA92C8601181D927DDF4 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 66CCBD6C58346713889C0A9A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2836CDC5AEBAD3AEED75A3A3 /* Pods_RunnerTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 97C146EB1CF9000F007C117D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + F19CB96FD01EABE54F784DB8 /* Pods_Runner.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 152485DA02A362CD0E771781 /* Frameworks */ = { + isa = PBXGroup; + children = ( + DD204FE7CB10350F4E43E8C8 /* Pods_Runner.framework */, + 84ED75BB9A45F74F2849E366 /* Pods_RunnerTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; 331C8082294A63A400263BE5 /* RunnerTests */ = { isa = PBXGroup; children = ( @@ -76,6 +104,20 @@ path = RunnerTests; sourceTree = ""; }; + 878D1C1052592A1ACB6A9B61 /* Pods */ = { + isa = PBXGroup; + children = ( + 275FA98EBEF1D87C21AA0A3A /* Pods-Runner.debug.xcconfig */, + 7DC868389DCA23AC494EC5EE /* Pods-Runner.release.xcconfig */, + 65116C16D7DB0EAA5A1DF663 /* Pods-Runner.profile.xcconfig */, + 77C9A4AE9C5588D9B699F74C /* Pods-RunnerTests.debug.xcconfig */, + 13867C66F1703482B503520B /* Pods-RunnerTests.release.xcconfig */, + F864EA92C8601181D927DDF4 /* Pods-RunnerTests.profile.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; 9740EEB11CF90186004384FC /* Flutter */ = { isa = PBXGroup; children = ( @@ -94,6 +136,8 @@ 97C146F01CF9000F007C117D /* Runner */, 97C146EF1CF9000F007C117D /* Products */, 331C8082294A63A400263BE5 /* RunnerTests */, + 878D1C1052592A1ACB6A9B61 /* Pods */, + 152485DA02A362CD0E771781 /* Frameworks */, ); sourceTree = ""; }; @@ -128,8 +172,10 @@ isa = PBXNativeTarget; buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; buildPhases = ( + 9220E6C153C3EEFE9CD513F1 /* [CP] Check Pods Manifest.lock */, 331C807D294A63A400263BE5 /* Sources */, 331C807F294A63A400263BE5 /* Resources */, + 66CCBD6C58346713889C0A9A /* Frameworks */, ); buildRules = ( ); @@ -145,12 +191,15 @@ isa = PBXNativeTarget; buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; buildPhases = ( + 36AE2A59F66C6734ADB52635 /* [CP] Check Pods Manifest.lock */, 9740EEB61CF901F6004384FC /* Run Script */, 97C146EA1CF9000F007C117D /* Sources */, 97C146EB1CF9000F007C117D /* Frameworks */, 97C146EC1CF9000F007C117D /* Resources */, 9705A1C41CF9048500538489 /* Embed Frameworks */, 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + 4470FC3A3E5C008BAD800C0C /* [CP] Embed Pods Frameworks */, + 0D60217D1C1D288B608930BF /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -222,6 +271,45 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 0D60217D1C1D288B608930BF /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Copy Pods Resources"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 36AE2A59F66C6734ADB52635 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -238,6 +326,45 @@ shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; }; + 4470FC3A3E5C008BAD800C0C /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 9220E6C153C3EEFE9CD513F1 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; 9740EEB61CF901F6004384FC /* Run Script */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -378,6 +505,7 @@ }; 331C8088294A63A400263BE5 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 77C9A4AE9C5588D9B699F74C /* Pods-RunnerTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; @@ -395,6 +523,7 @@ }; 331C8089294A63A400263BE5 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 13867C66F1703482B503520B /* Pods-RunnerTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; @@ -410,6 +539,7 @@ }; 331C808A294A63A400263BE5 /* Profile */ = { isa = XCBuildConfiguration; + baseConfigurationReference = F864EA92C8601181D927DDF4 /* Pods-RunnerTests.profile.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata index 1d526a1..21a3cc1 100644 --- a/ios/Runner.xcworkspace/contents.xcworkspacedata +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -4,4 +4,7 @@ + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift index 6266644..faac377 100644 --- a/ios/Runner/AppDelegate.swift +++ b/ios/Runner/AppDelegate.swift @@ -1,5 +1,6 @@ import Flutter import UIKit +import GoogleMaps @main @objc class AppDelegate: FlutterAppDelegate { @@ -7,6 +8,7 @@ import UIKit _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { + GMSServices.provideAPIKey("AIzaSyCuYzbusLkVrHcy10bJ8STF6gyOexQWjuk") GeneratedPluginRegistrant.register(with: self) return super.application(application, didFinishLaunchingWithOptions: launchOptions) } diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index ddb23aa..cc24b0e 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -45,5 +45,17 @@ UIApplicationSupportsIndirectInputEvents + LSApplicationQueriesSchemes + + comgooglemaps + + NSLocationWhenInUseUsageDescription + This app needs your location to show delivery routes and navigate to addresses. + NSLocationAlwaysAndWhenInUseUsageDescription + This app needs your location to show delivery routes and navigate to addresses. + UIBackgroundModes + + location + diff --git a/ios/build/.last_build_id b/ios/build/.last_build_id new file mode 100644 index 0000000..d33ebd1 --- /dev/null +++ b/ios/build/.last_build_id @@ -0,0 +1 @@ +094b6744e27cc18cd7b60f0f05ed7292 \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/project/PROJECT@v11_mod=9e2fb057732b89c3647d8f55a7747969_hash=bfdfe7dc352907fc980b868725387e98plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1-json b/ios/build/ios/XCBuildData/PIFCache/project/PROJECT@v11_mod=9e2fb057732b89c3647d8f55a7747969_hash=bfdfe7dc352907fc980b868725387e98plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1-json new file mode 100644 index 0000000..bcc23f7 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/project/PROJECT@v11_mod=9e2fb057732b89c3647d8f55a7747969_hash=bfdfe7dc352907fc980b868725387e98plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_ENABLE_OBJC_WEAK":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","COPY_PHASE_STRIP":"NO","DEBUG_INFORMATION_FORMAT":"dwarf","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_DYNAMIC_NO_PIC":"NO","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PREPROCESSOR_DEFINITIONS":"POD_CONFIGURATION_DEBUG=1 DEBUG=1 $(inherited)","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","IPHONEOS_DEPLOYMENT_TARGET":"16.0","MTL_ENABLE_DEBUG_INFO":"INCLUDE_SOURCE","MTL_FAST_MATH":"YES","ONLY_ACTIVE_ARCH":"YES","PRODUCT_NAME":"$(TARGET_NAME)","STRIP_INSTALLED_PRODUCT":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_VERSION":"5.0","SYMROOT":"${SRCROOT}/../build"},"guid":"bfdfe7dc352907fc980b868725387e98e1aec94ac99ae867c3e5f2d549714e7f","name":"Debug"},{"buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_ENABLE_OBJC_WEAK":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","COPY_PHASE_STRIP":"NO","DEBUG_INFORMATION_FORMAT":"dwarf-with-dsym","ENABLE_NS_ASSERTIONS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_NO_COMMON_BLOCKS":"YES","GCC_PREPROCESSOR_DEFINITIONS":"POD_CONFIGURATION_PROFILE=1 $(inherited)","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","IPHONEOS_DEPLOYMENT_TARGET":"16.0","MTL_ENABLE_DEBUG_INFO":"NO","MTL_FAST_MATH":"YES","PRODUCT_NAME":"$(TARGET_NAME)","STRIP_INSTALLED_PRODUCT":"NO","SWIFT_COMPILATION_MODE":"wholemodule","SWIFT_OPTIMIZATION_LEVEL":"-O","SWIFT_VERSION":"5.0","SYMROOT":"${SRCROOT}/../build"},"guid":"bfdfe7dc352907fc980b868725387e98f82069cc4ce8bc877b305cd4c3c37c84","name":"Profile"},{"buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_ENABLE_OBJC_WEAK":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","COPY_PHASE_STRIP":"NO","DEBUG_INFORMATION_FORMAT":"dwarf-with-dsym","ENABLE_NS_ASSERTIONS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_NO_COMMON_BLOCKS":"YES","GCC_PREPROCESSOR_DEFINITIONS":"POD_CONFIGURATION_RELEASE=1 $(inherited)","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","IPHONEOS_DEPLOYMENT_TARGET":"16.0","MTL_ENABLE_DEBUG_INFO":"NO","MTL_FAST_MATH":"YES","PRODUCT_NAME":"$(TARGET_NAME)","STRIP_INSTALLED_PRODUCT":"NO","SWIFT_COMPILATION_MODE":"wholemodule","SWIFT_OPTIMIZATION_LEVEL":"-O","SWIFT_VERSION":"5.0","SYMROOT":"${SRCROOT}/../build"},"guid":"bfdfe7dc352907fc980b868725387e981ea78178c56c0aa2fb428b3e48c1a991","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e98d0b25d39b515a574839e998df229c3cb","path":"../Podfile","sourceTree":"SOURCE_ROOT","type":"file"},{"children":[{"children":[{"children":[{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e9862269c6ba93e392432998c6b6fcd2ec4","path":"Flutter.podspec","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9895fe49344b33fd7cfbb68eb8ebaa069a","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9865adcbbcb4ec1b3c452a31ac4e82f814","path":"Flutter.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98236686288fbfe9faab703dc7debfa1a3","path":"Flutter.release.xcconfig","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98e85cf7e8c0dc6ac7666b9052d16b4e8e","name":"Support Files","path":"../Pods/Target Support Files/Flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9852a20eb1bd40e57f33f3b4e5b47c68e0","name":"Flutter","path":"../Flutter","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98c0c1d26819b1b6ff754a11e0bb60a74e","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/AppAuthIOSAuthorization.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e989fe16c66742c8a32c7fcbfe8cfbede39","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/AppAuthIOSAuthorization.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e986182dcc1d19eb9da615753adbce77fb6","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/FlutterAppAuth.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e982b3138ccf56a3651fe8365719775d2d8","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/FlutterAppAuth.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e3d99addc5d3d220aa59609b35eb2a06","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/FlutterAppauthPlugin.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e983ef89109ee2bdbcc73210f1e06d0f741","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/FlutterAppauthPlugin.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98dd963aefd0a76404ae6408beb47900b1","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/OIDExternalUserAgentIOSNoSSO.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98a990ac21cca9859ea9b09596c2ae4602","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Classes/OIDExternalUserAgentIOSNoSSO.m","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98cafc7bbf7b35265df98e96b0affb1a85","name":"Classes","path":"Classes","sourceTree":"","type":"group"},{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e98ff28582d663ab87fc368c4e58763f76d","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98388e6822d6eba3be70c1fe151f5a4888","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f0376f3ebb86838972943ec4ca5c9473","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981662b54bb2f569f9a3db53efccad9ee4","name":"flutter_appauth","path":"flutter_appauth","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c7451364f116188d85f2edea046d6a9c","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a984aafeb7ec1627c492b8228f80ae55","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98d0d1975e5ad35a054c46a8edb0431478","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98af895adc1988f310a4e37e33beb51383","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9890259e2998be6ce4100f15cc975be4df","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9868aba7ba77f1d00cb58424fa12594422","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983eff392b7f29d96f0ea1e535ec913b89","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98529392542510a04934e068ce6c6db32d","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b1f99b652f752cd93c78d0785241331e","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f6b7176a42382ccf51ab4a8f8d0e19f7","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9898be0251016a0fe71a7ba155722aecdd","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98458e0856635bfaf44ca4f53cea658de1","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9844009d2e70fb00b695ab9bbefe86e5d4","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios","sourceTree":"","type":"group"},{"children":[{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e98b084c2671a3974663b7985995b85ebe6","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/ios/flutter_appauth.podspec","sourceTree":"","type":"file"},{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e98a21b8e1b51b5ef7551a8d05b2cd56047","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_appauth-7.0.1/LICENSE","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98b5229847a9b741d25931a04b20aa84c3","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e9831d6d60a95b855a5e539ccadbaec4de2","path":"flutter_appauth.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98274aaa97a263bed6ed5e8d93eb3a75a7","path":"flutter_appauth-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e987b3eece0ba5e91450ec7b00b6f43f8aa","path":"flutter_appauth-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98733eaccd67833422a9fec7293ed0da50","path":"flutter_appauth-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98c85f472d48a5c63e9f6512a63f9ca1ce","path":"flutter_appauth-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9883fd68a4145abded79f7758856e20d05","path":"flutter_appauth.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98a0363b33b26a3f20bb91d324a46ad52b","path":"flutter_appauth.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98b5e064fcbf437c70bee7d3508754dfcf","path":"ResourceBundle-flutter_appauth_privacy-flutter_appauth-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98e01e1b969de5fa9aac42a31959e1584a","name":"Support Files","path":"../../../../Pods/Target Support Files/flutter_appauth","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98d6a3c1848021803c548816634cb15a54","name":"flutter_appauth","path":"../.symlinks/plugins/flutter_appauth/ios","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98794cadb55eb92731ccf3f8b7477df719","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios/Classes/FlutterSecureStorage.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98023666f24285e70b40c8e67bd2e3f0e2","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios/Classes/FlutterSecureStoragePlugin.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e987afa0de80e2d260eb9306c9bd81b1099","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios/Classes/FlutterSecureStoragePlugin.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9831458179f4c5fff40cece8411afaf95f","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios/Classes/SwiftFlutterSecureStoragePlugin.swift","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e983461ba755ebde0724ca9bec964ca17c5","name":"Classes","path":"Classes","sourceTree":"","type":"group"},{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e98d3e6170d25aa51f31d45d6eb8716104d","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e980bafce6df9b68d9c388e12960abc78b1","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9885cc98c76178288ca36ee66478b3df21","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981472e5c5bb27e9ed2ec1507a8c7ef2e2","name":"flutter_secure_storage","path":"flutter_secure_storage","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a98b4d769927bbb5680d4df2f08b0b94","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98cdcb3161278124c830243707a406bf5a","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983237dc5f582a354229dc56f374e743a2","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981e111bd9ab2c2085eee7d3a0ee36a97f","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c4afab3bbca8b39eb4111dc67442594e","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9873c9668d7faaad8e432ae59103c78b84","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ca5ff9f0ef2438e7c38d5b9b3daf932a","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9884767e49569f7564556ea1e53a35b50d","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ec31bdec484f54c643ebb7a32a986fce","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98439ce45592725149982dcdd73cfff331","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e987c7bd90875e3467131c824cfeadb68bf","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9863b00fcd7d2e0596554c3e9d065dc16a","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9858313eb988c1762db397fbbc3d1a6271","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios","sourceTree":"","type":"group"},{"children":[{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e98e29d19df08b101d4fd887cdd8e597a5a","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/ios/flutter_secure_storage.podspec","sourceTree":"","type":"file"},{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e988a8a52094dd4ca6ee48a7945b76d3e93","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/LICENSE","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9887741e2643950736439ee4b73e9b7a24","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e985d9d4a3fcc12af6cd374184f96af23f1","path":"flutter_secure_storage.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98d80af9fba9ebe07411f489f41e0b5e8d","path":"flutter_secure_storage-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98f4712ed0092a4ea505ce9bb945758edd","path":"flutter_secure_storage-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98935bb6143c17c1b5160a544e32dcc326","path":"flutter_secure_storage-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9892bc0aac9f1e7107a9ef5c6307fecd15","path":"flutter_secure_storage-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e984bc9977ccf8ea20d6d7539e56853e7a7","path":"flutter_secure_storage.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e987ba9ebb08e6d0c50675558e6cd7e065a","path":"flutter_secure_storage.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98d3b97644a7d1adb1ba59a9490576df81","path":"ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98195f080d3a0b58e1a0213ce2172d37ec","name":"Support Files","path":"../../../../Pods/Target Support Files/flutter_secure_storage","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984b77a63bfb579a0574bd3e29afb51d3b","name":"flutter_secure_storage","path":"../.symlinks/plugins/flutter_secure_storage/ios","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e987681c35f2fd4b602c038c149985a5dee","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/BaseCarSceneDelegate.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e982674cb57c94d133fab13bb5338e9acd5","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/Convert.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98f17ec0616e78ad58f93f3884865dc50b","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/Convert+MapConfiguration.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98865ffdb7d9e6debf42a9eadf208216b7","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GMSCircle+Util.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9825b5b7f4c399e3bd9fc4e3f18c520be8","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GMSPath+Util.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e987056dfe90ec2eed563217d38f4c1999e","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GMSPolygon+Util.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9819197270afa464fa6e01f7299f7decf6","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GMSPolyline+Util.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e983c3d0b4f6b23240126abfd5c470bc141","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsAutoViewMessageHandler.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e989c356d3bb4c123219c281c139ef833ec","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsImageRegistryMessageHandler.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98a5393baffa7c968f8327f46e6c1eb47b","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationInspectorHandler.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98908e147e20200457b015313b53e6c212","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationPlugin.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98f2c849eece1100d8784de11c28fb1cad","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationSessionManager.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e987faade7981203fba9f3033f647406bab","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationSessionMessageHandler.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98317648bc5b55016f3f3ce840d157d420","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationView.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e988a18c8852784e081cbf0a098dafa5508","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationViewFactory.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9859a909a44aedf804195f16f281d9c5df","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationViewMessageHandler.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98dc25ec9b0d1406be3cea65c605b15d89","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/GoogleMapsNavigationViewRegistry.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98724d7a7bf5633c2f968d9ed7075a34ca","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/ImageRegistry.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9822a3ba5407bed0e040774b6d1b1ebac3","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/ImageResizer.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9827505e42c992393574205a59da5805b4","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/LocationManager.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e988ec9c829964d07c03a7abec078247010","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/MapConfiguration.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e980916d642c9e36c898723754a5f6eb0f9","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/MarkerController.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98c992f6945608c6e82e920c8fb3a3fb08","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/messages.g.swift","sourceTree":"","type":"file"},{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e982d47e6d9df96d21c4ac2b81d688ce03c","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e984ada040ae8234a88b1bfcd1e1f84e508","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/RegisteredImage.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e9845148609b454ce4f4f5992da2534c515","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/Utilities.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e987ffb8160ae212d180965edf5cc6088a1","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/ViewSettledDelegate.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98985f6c376d078e16f1b35a3aa6290ddf","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources/google_navigation_flutter/ViewStateAwareGMSMapView.swift","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e989e4aa0a64ee43ca90508a08a33965a35","name":"google_navigation_flutter","path":"google_navigation_flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9853646059aaa83ace2ed133474f7362ed","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988ae40b9a55a1473fc121379afad07b78","name":"google_navigation_flutter","path":"google_navigation_flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9816a1a07511c01a62463ef2001b0ea2fc","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9856985231fc13e1bdd77c4214d0c6066b","name":"google_navigation_flutter","path":"google_navigation_flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98dd20b2d22b7e395bb76444959707a1c1","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ad509130048da31f378ce0b76c54bfd7","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98e2d78a632530a2260045b25f7345265e","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9877062cad2d2572a9e4d1b589a2898496","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fbe06254968fa4dae50a952d5c8d52f5","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98838e52320cbc6436ec463f392e3d226d","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981e5905fc192d4ffd6ff8a4094c68233c","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98034b68ab1b7e96ab2b583b958deb34fd","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e987d715b60c7341226d19821252d846257","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c47ec2991d5d5ac39461eb079f4bf7bc","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983e26ffcc784a1a9442f60097333b3ef7","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98953b7518e4d8ddf77cbaad095b128a07","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984cf7cd45eacb929297b4262fe2967fa6","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98af6786e26bc377893403f72f008f7bac","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98d0dfa12412a99bde86e0cbb530a9ee1d","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter/Sources","sourceTree":"","type":"group"},{"children":[{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e98910c0ff2578d3118f8598e06efe073f3","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/ios/google_navigation_flutter.podspec","sourceTree":"","type":"file"},{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e984212dfcd485b7521c437206aba771a2e","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/google_navigation_flutter-0.6.5/LICENSE","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98ffc55243be541567346465aa130a11aa","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e9846d4bbda6cc1ef69aa4eaab574efd18f","path":"google_navigation_flutter.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98bcdd2eeea62f74c4cf89c85a64666777","path":"google_navigation_flutter-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e980059ee8c2039c315b2d39669cd809972","path":"google_navigation_flutter-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98930078670514a1e1247438ae1e337980","path":"google_navigation_flutter-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e987c39ebcc162b6860a4b63c73ba4fd5fd","path":"google_navigation_flutter-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98dbfbadcdcf06bb75f82d99bd1987f413","path":"google_navigation_flutter.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e986fbad5942614a388f6084141625088fe","path":"google_navigation_flutter.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98d477a77dabd6522e6abd4c6129c46c6e","path":"ResourceBundle-google_navigation_flutter_privacy_info-google_navigation_flutter-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9888ad4cdf8b069dbbc2c8848fd7b9e32a","name":"Support Files","path":"../../../../Pods/Target Support Files/google_navigation_flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98551bef02d82b7ef6685e6a8f3220cff5","name":"google_navigation_flutter","path":"../.symlinks/plugins/google_navigation_flutter/ios","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e9869631eb1c001ffcff7f8e0c26a0c3aca","path":"../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9846acca314876601862893df8ed8d750e","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9882d7bbb9fb045fc9820c74d9396e35b3","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e985766891dd063cea7687c270701e910fc","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984d92bfce81c4c0544470edc486db1060","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98e3c78568253cf3ef79ba3de55749841b","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988dffc1ccab1134795e8e0961c9f1b95d","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98923335d2c287fb9069e0c78de2adfb4e","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f598b5117ea1e9495b13e30ba3386bdc","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c5e4ce9cc219707a9dde5db345a172f8","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986839dc6846aa880b11c2359a4430d550","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9840fb856b5bade564cb90dd44c029c81e","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9839e9f597514415290bd67db4ae4d62f2","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fe850d09a46b38954fe03a456b3f6ac2","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e989333fbd8b1d5a6af2185ff94b58388cc","name":"..","path":".","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e983b93f8378f7fb936e6af30ae0fc031d1","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerImageUtil.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98192342f3a1e6fa7d8df75518a6291d0e","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerMetaDataUtil.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9829e95c77842c314f38f44ac82c8454f5","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerPhotoAssetUtil.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9864a73f328b5c201f83394f7f6c366f54","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerPlugin.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e981be133ce6f86b018d63304f3d4e9658b","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/FLTPHPickerSaveImageToPathOperation.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98dcc5bca963f8679615856c45076d0d2f","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/messages.g.m","sourceTree":"","type":"file"},{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e986e9a1a00a8ce648c1bf978dd9612b5b0","path":"../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios-umbrella.h","sourceTree":"","type":"file"},{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e986fb281191d98309c542430dc009eb642","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerImageUtil.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e984647714c8322b90b54acd21f377b4d64","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerMetaDataUtil.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9897e14c7b68b35325c5b0ee94d79c95e5","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPhotoAssetUtil.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e983160aa790e646d347321c2925158f535","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPlugin.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e982f841768f479bfd8a90a095f81317f42","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPlugin_Test.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e988b8d9c28ef57afbf8a2f230537cd2a9e","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTPHPickerSaveImageToPathOperation.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98a4773f9f174b3b575c3f42baec0ccb45","path":"../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/messages.g.h","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e986958a95875fe7234220c088fddbc3f15","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9836d49ae1cf869cb720578f84a0520a45","name":"include","path":"include","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e982ac9949029252fa9f7ff413fa75dd685","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988fbc756b271b0b1bd63f6965be738503","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ccfa23b913ad0e84ce1411abe74fb742","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a56550fc7e2fae753a5f8d9c8e350fb2","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9854cb77c29d6db0af0b56b1b48b59e1b8","name":"image_picker_ios","path":"image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983d5552e6928ef8bf0ebec47a04c50ac9","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a580f57cbfe09a9f3a204a9b6c9e41a2","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980ed285eadb3005de8cf2795a01774aed","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983915a293c6bdbbb4b53522dc0c548d27","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98926d3d60bd26c35926b9da62925d5e56","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b90991e062cbb201f56731ae7a79926e","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98aec1e1a58c6390e11152ab253bcc3aae","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98d61f8e8b07769cb2be205db4f1fb2d49","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fe9dbb06f8594a40fc06b82b262d572c","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984c68066c610b1511307b48568f19d28e","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98eb7420f535ddc3a4311d1985beede10c","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980fec7e7d6aa5d28f1db03cc3718b443e","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a6f0ba6c982c10e20859488fa5a2af3b","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986f9659e2f6cd6ca0a13aa3dc7dd109f7","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9804fe04d20fe98c3daa327fca4cfccb93","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources","sourceTree":"","type":"group"},{"children":[{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e986ac6b081fda7b119351a8d7e2e0a98d6","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios.podspec","sourceTree":"","type":"file"},{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e982879f8fad2afffcf8e675a73a6632dea","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/ios/image_picker_ios/Sources/image_picker_ios/include/ImagePickerPlugin.modulemap","sourceTree":"","type":"file"},{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e98191e0525da561625cdc993dd25a60690","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+1/LICENSE","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98a61bcd7a64077e6bba5c43a608d34732","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e985bff85a0c699519faa5e290f1bec6c3d","path":"image_picker_ios.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98303186399ac85940583f4fe342f70d42","path":"image_picker_ios-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e984be224428014c31485a095b73e052f1e","path":"image_picker_ios-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98eda843f567f63b6da94406c85c4445bb","path":"image_picker_ios-prefix.pch","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98067c4bb9648cff0393e17526af5710e3","path":"image_picker_ios.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e982e9c5f9312975795324f63668491a40d","path":"image_picker_ios.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e986ed813a2c67426d40527a3058d82266b","path":"ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e989e0833d25b396d245ac889925af27c9d","name":"Support Files","path":"../../../../Pods/Target Support Files/image_picker_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984e85766c249cafe0b60fcf9662b4bad2","name":"image_picker_ios","path":"../.symlinks/plugins/image_picker_ios/ios","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e98dffa8ac546e296000112a65a901e4106","path":"../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.3/darwin/path_provider_foundation/Sources/path_provider_foundation/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98ec7f0d0ce1867c0040eca5345f9ebec3","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986f401f5641462722b23efbd01022dc2c","name":"path_provider_foundation","path":"path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bfa3c7ab43aaf4ab4abfe0d67c21fac0","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e985ed82e3f783352f1576f7e2bd2e4dce4","name":"path_provider_foundation","path":"path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988b16672ea3b2aecff5401d5444a3dfa3","name":"darwin","path":"darwin","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e989a7c4b40fe568229f7e019aee69237f5","name":"path_provider_foundation","path":"path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a5a8bbc8ef9045c822fc6dd0647da393","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983ed6fa3eea96409b8ed182530a458021","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98dc2dc571b12cdb28a37f66c61c978baf","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c3b7f9bcde50ac2388634e7438eb4903","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98db1d90dead6b5ef0c57c759b671b728f","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988e6f34d320a95d9f01afe97cfed3c670","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9889e3cee1d649fd0f63b48a9379e24907","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b0412dcc5228e239af8b1dc3e6bf8ea9","name":"..","path":".","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98026c1dd099574f7f5fcb70e985487254","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.3/darwin/path_provider_foundation/Sources/path_provider_foundation/messages.g.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98ad0bf19cb89fed543df4d4bac63fea0f","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.3/darwin/path_provider_foundation/Sources/path_provider_foundation/PathProviderPlugin.swift","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9853cb0d5fd7b7a1bbe8fd5bb4ebfb4438","name":"path_provider_foundation","path":"path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9862c6794a3dabf2c4f5ed2fa9b2df9f1c","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b2db618b7e42f5a03aac6bc44fa0b3b2","name":"path_provider_foundation","path":"path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e982c8eea1a801265f24ec81a1f86ccaadf","name":"darwin","path":"darwin","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980ad46e6e3cf9f0911293a3d5f14851ba","name":"path_provider_foundation","path":"path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e987ee596fd6eb4749e3ff955763c4463ca","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981d54c498032976c57e8bf49fe25e4d8a","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980dbd81a5a8582bde1dbdecdb5dcbae74","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9836b0b1ba3479ee5c1247a226918a47ac","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98cba2a1f8c21b7b7a79506de70241d24c","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9885cce57d4316174dc7c5ad4e413706d8","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bec7a2355d2d3ff094b9e574c197845e","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b523433a51d4a9c50aac231c1d8d8aea","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bd2c6ef3e01635ba4d498452b79a2503","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fb6ecff4b8a2b7ae650ecc0f6bdfc277","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981d4e905931a67570f6e509b06c67cb1e","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98baeb2929b61f4f3ca8abf623fcdad162","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98511b1340bd680f5fdf67d16d3d4f6fa9","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f2dc1f68ae8e20ee85be2ac12b569cc7","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988e45f9d4ab4220f6698d389ba9f519b3","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.3/darwin/path_provider_foundation/Sources","sourceTree":"","type":"group"},{"children":[{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e986858aac8c42acad3813a6f81503323a6","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.3/LICENSE","sourceTree":"","type":"file"},{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e98447013af1d5da0ba5ea414ea3545d558","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.3/darwin/path_provider_foundation.podspec","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98f15b8e4e567210d187f98e7967af5ccc","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e9824457bc448f252fa09bac3bf2b48f3c1","path":"path_provider_foundation.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e987e4d4f66b5ef48bcdbeaa50b5d10d2fa","path":"path_provider_foundation-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98c2f5915fb13187e50dd2657f8e90d09a","path":"path_provider_foundation-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e9e55f8db5bb7be061c9dbcfa66fdcf0","path":"path_provider_foundation-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98050c696288637966e8ed2d33e420d592","path":"path_provider_foundation-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98a69fd7bcabc0a20fae04fd73fa52549d","path":"path_provider_foundation.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9830121d4cd39b9b5353e3bd656ff5f0e5","path":"path_provider_foundation.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e9871241f3c7f7a80bbf34bc565a57292a8","path":"ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98b2234ebb85c1f8317bbf2f2cd9d1e761","name":"Support Files","path":"../../../../Pods/Target Support Files/path_provider_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981ac82387bb7f4080ecbaa692801333dc","name":"path_provider_foundation","path":"../.symlinks/plugins/path_provider_foundation/darwin","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98de3972120fd5b87af1a609cbacb50f8f","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/PermissionHandlerEnums.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f6425cfc4394b6884fc4335a6778dbfa","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/PermissionHandlerPlugin.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e989bfeb447680565b0927f4ea9696170ea","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/PermissionHandlerPlugin.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e985e1d40f284ddf14f29cbb7bf00a7fb66","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/PermissionManager.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9811d0d8c6a8c04ff508b09b223f0997d8","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/PermissionManager.m","sourceTree":"","type":"file"},{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e982914bd5a57bbc9144e4abb998062d952","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/AppTrackingTransparencyPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e981fdb25bd3d86d356b093955f08d75309","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/AppTrackingTransparencyPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9868e11c3650d5b780ad237288c9b33716","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/AssistantPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98c0b3f6133f3ce5b0adacb28030e2d58a","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/AssistantPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e987605b982c570b8061c7e6f0c100dcf85","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/AudioVideoPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98a86c5518f58c878cbef74c717a7d3271","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/AudioVideoPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98bc814483dec2898e547899781f3fbc59","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/BackgroundRefreshStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98d3a4eec656b805de6f66a16c5ca4b68d","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/BackgroundRefreshStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98b9bd810d63c02d3414111ec00704c748","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/BluetoothPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e984af88dfdfa896380c1660dae222defed","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/BluetoothPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98764e1a4ea4313a8a5fb54ace24a1195e","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/ContactPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e985ac597a5da324446864ce858e7456b94","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/ContactPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f12f7d68c5db61a96c17051780750a67","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/CriticalAlertsPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98e86e05137ebe6730ea8f31eec8a0c369","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/CriticalAlertsPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98d57860c863d76b575797cec161e52653","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/EventPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e989bccbde9f4b849351b6ad5c0384d17df","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/EventPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e981bac7df9b8ecf4e5a9d0d795237507cf","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/LocationPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e986cbc2eb8408559946efdafa013a7c63e","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/LocationPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98ee8170124b7c6572e5358a6462797952","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/MediaLibraryPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98c0731b099cec2e912468e174487ddcbd","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/MediaLibraryPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e989006e826667b63c3d132e68aa8ec7e32","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/NotificationPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98f261e23f41d3399fadf8704c49625f41","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/NotificationPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e986cad7176e3315a8b1c316098566743e5","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/PermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9842be4cdb3d0bcb79d58ac5b3f0009648","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/PhonePermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98fdbf6aef7e062c73fb12df6f519d18a9","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/PhonePermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98089cd36b188b988d0552474432b82b3a","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/PhotoPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9841f8dcd3372926c521f9f342e8859314","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/PhotoPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e941ee58c8500bf5ca61eaaa3c72d775","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/SensorPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98854698455cffb06209a219460d90327e","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/SensorPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98a631e34844979b87593c681b53e3020b","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/SpeechPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e981118b9c6209260d6e4c3d279b9e48767","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/SpeechPermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9824a6e6a924d403a44b98b53919ba7cf9","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/StoragePermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e986e722d11c3ea8ff538bcd965964c0f18","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/StoragePermissionStrategy.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e980e829c91332f0029d9c98218888c6b41","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/UnknownPermissionStrategy.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98e2336c5d329fa45b01139b0d38fb6bdd","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/strategies/UnknownPermissionStrategy.m","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e988004c2ce2641837ec3d099903e711f24","name":"strategies","path":"strategies","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e981a3600ac4816a4f4e00978522f187f59","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/util/Codec.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98407be5ef3da4f1421ce5d35fbc700c05","path":"../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Classes/util/Codec.m","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98743873af10aefbaefe487ec260139f5b","name":"util","path":"util","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9800063fd4d698f365e7fb5098a31fcf33","name":"Classes","path":"Classes","sourceTree":"","type":"group"},{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e98b0de2f55c3fa51a2b67df83a91ae1558","path":"../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e980ba10fe536550ec753ca9d1ee7da1bbc","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98401a6cc12a62f7247aba0915e23041b4","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984be1e164841178d317f654727037f366","name":"permission_handler_apple","path":"permission_handler_apple","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e985628d2efa6e71e35c41973c521513250","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98e1370120f19d9bc88a5ebaf2b74a1125","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98efb0bdb42942232ce1cc2018e2f0b214","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980cd88c765fe714c98a218b6508e3af05","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981c08aa10459ad6040a41d218718be077","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e989f5a6c484527e20e1c82b6e06442c086","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f2e5b4ecf3cea1bb5c0f35c18ba1173f","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981474bca654a2f992aa1b3747219c5296","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98da27bde94ff00a4b3c2e51e20e10db4e","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98a4f7e15949eb7a1815e9f5d12bed3d0f","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980cb3e3bd2c84e354e6a77dde501a0515","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e989d615ead8f8429a4baf912c4da01b2b3","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9805a7733ab81cbc294fa99c5298c199df","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios","sourceTree":"","type":"group"},{"children":[{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e9847b8573703401e4ec1eb0392f0afca1b","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/LICENSE","sourceTree":"","type":"file"},{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e983c3f46f702dca54eb2a16ad99d7c7d18","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ios/permission_handler_apple.podspec","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98c211875ef9c940c6e99220b8d34581c0","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e983fcb5a0a219a873ca64ab7357a4200b3","path":"permission_handler_apple.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e987a4e3c98281f91014711aad11f4f0b3f","path":"permission_handler_apple-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e987b488f65642e367c7d7919222c6561a2","path":"permission_handler_apple-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e989293c7468428b0ac00ded40808aeee4a","path":"permission_handler_apple-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e3f55151c2f223b88de1713607b633a4","path":"permission_handler_apple-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9809a5e132d0bce4b05c12cea0e4f26a78","path":"permission_handler_apple.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e985b9fdf58418402c948d4991249b30dbb","path":"permission_handler_apple.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e9847be96e2f812c4f0a55deb64fd8eee65","path":"ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98bad4dc787cdf70a328b948ec96979c34","name":"Support Files","path":"../../../../Pods/Target Support Files/permission_handler_apple","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e985f9afdd8ca16f2c11fc81c84c86a3ba0","name":"permission_handler_apple","path":"../.symlinks/plugins/permission_handler_apple/ios","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e989f3d0465172c96a1dfd43d18de6cea13","path":"../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.5/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98411a057a1a7cedf8e7164e3fe564d801","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e981382f30a6c9881394c239b00e3cd49ac","name":"shared_preferences_foundation","path":"shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c06419fd6a5792b977297265f8e2abd8","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986696e4258437dc3b6f400033cfe1f058","name":"shared_preferences_foundation","path":"shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e989f7a1b59b30fed8a4c75685752551cd2","name":"darwin","path":"darwin","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98eba4be0a626ea9421927a4fcd93c7910","name":"shared_preferences_foundation","path":"shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bac26477ac846ea0687f9512393d951f","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98423732f6389247c7ba2d993677153828","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98634c91648392b3590d1f7a0e0eb9a84d","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9851845a6b5cccd4f72b81167624504d58","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9888aa3339c17a8a7f8391b6802b295bf9","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e985d87da9325f008b341b76fefe5c08430","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ffbaa68f1ad0bb01a8c977051301875d","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ef31da106318dd4a38ac7e2aeacb8364","name":"..","path":".","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e988b3f495c356838466ddb3010f4d2acaf","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.5/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/messages.g.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98181d528f5b5e81c144200514bb34843d","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.5/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/SharedPreferencesPlugin.swift","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98eee7312e1338a76213210dc438a34852","name":"shared_preferences_foundation","path":"shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c8d16cd2ddb074e5ee5b20e51f7c059c","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9809e9350dfd8fe5cb9b4ad7bbdaac5ec4","name":"shared_preferences_foundation","path":"shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e985539983c57febead78e39c02ae22c7ca","name":"darwin","path":"darwin","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f925b9a57627cf73073400a93d7cf0cb","name":"shared_preferences_foundation","path":"shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f177a7f1c958cb7275a362b959701174","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f6a029c7ebc82f5718cedb70958a32fc","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986c1aca081615a3e1845c9aa0462ae44e","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e982ff48c2948320e8c29feeaadf0ef0cc1","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98cccbca70b4977970be5c58189931478e","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986102ac2e00d0037f9bd8655b514d2f9a","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b1e496732e8fdf8075cf5c8f12704f1c","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ea7dae84eefff17c369079a5ef1f0fba","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98e9bd97750df4d2bfe2ada8d783fb8444","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9889837a46616e08c3e0720683270d5ecc","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bd1b7a9fe0e27971f51b1659be9badf0","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e982e7862632c11114c173815fe579df880","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fe441e7210a729c919082cbc8f3aefc4","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9804a4fb60a831e541d872e4af1f4525d6","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980e9055c84e7582130db218703542ed7d","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.5/darwin/shared_preferences_foundation/Sources","sourceTree":"","type":"group"},{"children":[{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e9807e3922c76ff5732fb907d64096ae329","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.5/LICENSE","sourceTree":"","type":"file"},{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e9805ad40613753d74c53f01c3040a53c9e","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.5/darwin/shared_preferences_foundation.podspec","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9856e29cd646d7a8783306e9fd1027135a","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e983556d5d3398962859025cd2256acabdf","path":"ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e985c2ffb7a8a1a21aa3f6d36ff2cd484bc","path":"shared_preferences_foundation.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98754d8202a6b99765f4c3d0f5d893e3ac","path":"shared_preferences_foundation-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e989f9e2fa47194b543896c89595c068f58","path":"shared_preferences_foundation-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98cd687024a619f5f014d32336e9ffb13d","path":"shared_preferences_foundation-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f5931a0aa7c99539733254e54e84315c","path":"shared_preferences_foundation-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98f1732f50402cdd4e9a853378f00de46e","path":"shared_preferences_foundation.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98039c35627e5877b409f4593c36b6bc93","path":"shared_preferences_foundation.release.xcconfig","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9839518e4f316ac2aaed6f965ea351ac8d","name":"Support Files","path":"../../../../Pods/Target Support Files/shared_preferences_foundation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9822cc4f37331c7fef6e60729fff71f2db","name":"shared_preferences_foundation","path":"../.symlinks/plugins/shared_preferences_foundation/darwin","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e98746b0938be2ee934824b330d686857af","path":"../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios/Sources/url_launcher_ios/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e989b5fa3a5f7cb23ecc68c257d7351eb73","name":"Resources","path":"Resources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98135cc608bbebc3d889609e4114d08784","name":"url_launcher_ios","path":"url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e983ac697c4b7d33afb9c5a5fb5e71f1aed","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9804bf1e9df51e158294e7e988e391612a","name":"url_launcher_ios","path":"url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98e03d895aadfdf99d1e784e7a83f2264b","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bd1116649690a6a682ce85901c39a3ef","name":"url_launcher_ios","path":"url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98943c814f0fcc6e9b7b5f8479898060ec","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c2b6e1908499b791e69cc2aaf84a2298","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98b9f3fb8c8d4e37d2d9195cd5a00a8e53","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984cf545b0c4822142b715a3fe30bc3a87","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98c482984852c95254d52ccc8a3960acf8","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98de8fb9ed8a5f2812426846722d8bd646","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988b65a8750125bce3e7622bbdd1cdce75","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98462a728cfd9706b2c3779c9bb3da065a","name":"..","path":".","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98b7252221f0161c250efbb96fc52217d6","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios/Sources/url_launcher_ios/Launcher.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e989af77d09fa1245b6555253650a221134","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios/Sources/url_launcher_ios/messages.g.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e981dcadcb091654ec4da2ce1421ee5075a","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios/Sources/url_launcher_ios/URLLauncherPlugin.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"bfdfe7dc352907fc980b868725387e98bb5a42296a20bddb1dc9e43645c62a4a","path":"../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios/Sources/url_launcher_ios/URLLaunchSession.swift","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9806e28a4b1ae92b6be658a83687dc4015","name":"url_launcher_ios","path":"url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9809b703f7bb03a67c121cc68971d06f30","name":"Sources","path":"Sources","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ffdf44346040c47c9b3bee953ea18911","name":"url_launcher_ios","path":"url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e984b0870539e536400a0807c08eebda202","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98df111e9928ee85330ff4e4b14a82b304","name":"url_launcher_ios","path":"url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9829d1f5474032cc7d20abd672e4bbd2af","name":"plugins","path":"plugins","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9818a297cd52548b04c0eec57db21e1419","name":".symlinks","path":".symlinks","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98ca086717a64a4733c7d3e96bda25bee4","name":"ios","path":"ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9871e9d82cb7653f537f003c56bb98faa2","name":"ionic-planb-logistic-app-flutter","path":"ionic-planb-logistic-app-flutter","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e986d1aaa2f6ef00303e7c50998d017c3cb","name":"plan-b","path":"plan-b","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fd9e2a65eda77ce85fa7cbae5ca2dbed","name":"workspaces","path":"workspaces","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f9275f1f469d4fade65b138b92e6d36e","name":"Documents","path":"Documents","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98bb628b6a19c111053bc7b2ce720fe9c2","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988177293630d32ca8569455d739744bfa","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9829ce9f1151c82ed957d4871e67050d56","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e988606c020fca03f292949415fa9dc9779","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980a1d7ae54751e69b2355a700cef3234d","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98734dcfca485a250c158a8440a900a43c","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e980e324c3562375d3c6dc3e437b2b35ca7","name":"..","path":"..","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9808af917f651496d57a9912a16fa645a0","name":"..","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios/Sources","sourceTree":"","type":"group"},{"children":[{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e9857b97b9388440760cc6e92668b57bd2b","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/LICENSE","sourceTree":"","type":"file"},{"fileType":"text.script.ruby","guid":"bfdfe7dc352907fc980b868725387e984498c6ec0020484961f7b6475f3379b5","path":"../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.5/ios/url_launcher_ios.podspec","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98581fc35f06c18e7678f848a10670db61","name":"Pod","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e9837ae85690486d5f3ee7bb434806f0683","path":"ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e98a9e9765a84941c14aac729f2d7f183b3","path":"url_launcher_ios.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e986dffdaaee84db700ee3bcd7ab168bf38","path":"url_launcher_ios-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e984a510f165655d0a9b6bfde87d2ed1d15","path":"url_launcher_ios-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e30938bc8549d92441bcad88f60bf0f8","path":"url_launcher_ios-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98db7b71b228219f8f26f0bafe9eb43ec6","path":"url_launcher_ios-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98186e982df37db89fe49bcda3a9cd9b73","path":"url_launcher_ios.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98ace0c0440e4b53ba3de29900f7d4bb7f","path":"url_launcher_ios.release.xcconfig","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98e25b619f431c24c7972f0b536eb8ab23","name":"Support Files","path":"../../../../Pods/Target Support Files/url_launcher_ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9862fa88f447f319b356c3ae3f2d2f48a6","name":"url_launcher_ios","path":"../.symlinks/plugins/url_launcher_ios/ios","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98afebd15664fb58732b992db3b8892884","name":"Development Pods","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"fileType":"wrapper.framework","guid":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","path":"Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework","sourceTree":"DEVELOPER_DIR","type":"file"},{"fileType":"wrapper.framework","guid":"bfdfe7dc352907fc980b868725387e98a9a6af648894e46aaf01bd3988458b40","path":"Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/SafariServices.framework","sourceTree":"DEVELOPER_DIR","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e980592a724b498c23e5c7fd49807e9d4e2","name":"iOS","path":"","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98093e0d274405de132c9336fa40762070","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98b44ab8f07097b1290d71e4b05f238c1b","path":"Sources/AppAuthCore.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98dd7b8531a171d2f5adab41153aec91c4","path":"Sources/AppAuthCore/OIDAuthorizationRequest.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e980eb32d1597aa8f3268d989adb090f998","path":"Sources/AppAuthCore/OIDAuthorizationRequest.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98b98e26e2d61277cc3ee4e995442136a6","path":"Sources/AppAuthCore/OIDAuthorizationResponse.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e985e6efff7cfb8c43fa4154d8f24cbe296","path":"Sources/AppAuthCore/OIDAuthorizationResponse.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f36fac36aa8d4d22d10b7a3c593562a6","path":"Sources/AppAuthCore/OIDAuthorizationService.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98b1ff9cae67d165642811ca09a9dc3382","path":"Sources/AppAuthCore/OIDAuthorizationService.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98a7a84158fceabfeff432c43b553309b8","path":"Sources/AppAuthCore/OIDAuthState.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98e09acb3899d8490f056a90449599df91","path":"Sources/AppAuthCore/OIDAuthState.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98126da7d97c16c8dfda0ed12c6da55bb9","path":"Sources/AppAuthCore/OIDAuthStateChangeDelegate.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f1216961eddd9a47220e6ca107aa9828","path":"Sources/AppAuthCore/OIDAuthStateErrorDelegate.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98754ee7df1fb115ce62254cc6b8423227","path":"Sources/AppAuthCore/OIDClientMetadataParameters.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e980db1d31f93033800523708754dec96f5","path":"Sources/AppAuthCore/OIDClientMetadataParameters.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e984806d0eb6a5cf07885fbcd74930b9aff","path":"Sources/AppAuthCore/OIDDefines.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f435644cbfd037d07900fa24e714e8b1","path":"Sources/AppAuthCore/OIDEndSessionRequest.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98f4d5d1df8778a6ee4a2d7e75ce26f5e2","path":"Sources/AppAuthCore/OIDEndSessionRequest.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98fe717c0175d2aad33399b64dc3fdcb5e","path":"Sources/AppAuthCore/OIDEndSessionResponse.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e989635153433fecd8f16172bc78096d442","path":"Sources/AppAuthCore/OIDEndSessionResponse.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98501868da06422c48c5d76ec8852a06be","path":"Sources/AppAuthCore/OIDError.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98f431c2de6f27a805a900b01836c65b99","path":"Sources/AppAuthCore/OIDError.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e989cc72e4748fc5a268f11a21df36ac473","path":"Sources/AppAuthCore/OIDErrorUtilities.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9822ebcc5ae1bc197d0011858201338ae8","path":"Sources/AppAuthCore/OIDErrorUtilities.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e987e5a3172d96391a14e8d3b509e7c9612","path":"Sources/AppAuthCore/OIDExternalUserAgent.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9827bd915abfeec76a3ceb856e76d59341","path":"Sources/AppAuthCore/OIDExternalUserAgentRequest.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e986e085cdccbcda2f40a2f1fcf6e3a4b71","path":"Sources/AppAuthCore/OIDExternalUserAgentSession.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98badd68b44c91ce69752bce342a87fc90","path":"Sources/AppAuthCore/OIDFieldMapping.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9848e1f170ab66d50e1177aa153e65dfd9","path":"Sources/AppAuthCore/OIDFieldMapping.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98adfc69b9d4843f4ef581830ea72d9fe1","path":"Sources/AppAuthCore/OIDGrantTypes.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98d7f3818dfcddf385c62b72dee800aae4","path":"Sources/AppAuthCore/OIDGrantTypes.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9870f7acfd872e26a78f6a17e6352a3676","path":"Sources/AppAuthCore/OIDIDToken.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9805cee9565d88ef60d792792647d7ad63","path":"Sources/AppAuthCore/OIDIDToken.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e989cc8fa1f99b2cf43a8cd6e5a77f73b8e","path":"Sources/AppAuthCore/OIDRegistrationRequest.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e986a76c306bdab80419341ecb125e957f1","path":"Sources/AppAuthCore/OIDRegistrationRequest.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98dcea2e8ed5715b7048783867c2fc66ea","path":"Sources/AppAuthCore/OIDRegistrationResponse.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98d4e16c7688fd3c846322c4072de3c81c","path":"Sources/AppAuthCore/OIDRegistrationResponse.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e980c8e2a94646f5d0e94b18eb01258da93","path":"Sources/AppAuthCore/OIDResponseTypes.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9829414216c52a549921ead2e867b6d838","path":"Sources/AppAuthCore/OIDResponseTypes.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98f21f370e690c1bfbeaae52cf7518a6de","path":"Sources/AppAuthCore/OIDScopes.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98cb5103ee41c24772ab0ceb64e1fa9c85","path":"Sources/AppAuthCore/OIDScopes.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98ca1ee19fb6041bf4a01dae283bfe0784","path":"Sources/AppAuthCore/OIDScopeUtilities.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e980e944a5b584e70d7f48a0577717b1493","path":"Sources/AppAuthCore/OIDScopeUtilities.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e629e01764f3525f59f0fcff8402e0ff","path":"Sources/AppAuthCore/OIDServiceConfiguration.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98c488d7d4585b8d560dbf27360a726b79","path":"Sources/AppAuthCore/OIDServiceConfiguration.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e984d8bc0f8e0f4e8b32cad41baa988636d","path":"Sources/AppAuthCore/OIDServiceDiscovery.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98886b5a61d4c78a04b0da32e20704f64e","path":"Sources/AppAuthCore/OIDServiceDiscovery.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98cc393b3a600a426bbf6f069d0b247a2f","path":"Sources/AppAuthCore/OIDTokenRequest.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e983ec0380373c891bc5cdfef8e4728b5dc","path":"Sources/AppAuthCore/OIDTokenRequest.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98144b68743adf95cb5929315d5bbe4176","path":"Sources/AppAuthCore/OIDTokenResponse.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e981d9e89f062c57bb801de45c33e1b3b48","path":"Sources/AppAuthCore/OIDTokenResponse.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98176a6abe9191f94b0bc81561ba7c38ac","path":"Sources/AppAuthCore/OIDTokenUtilities.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9801af4615228758e54683080188b5f967","path":"Sources/AppAuthCore/OIDTokenUtilities.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9803746abc99c3b69d5d8f4c8e7014ecfd","path":"Sources/AppAuthCore/OIDURLQueryComponent.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98bfcce6824065d509c94c57f4f86e3906","path":"Sources/AppAuthCore/OIDURLQueryComponent.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98d1f276d52aa9d008ffdbbe5e09e7b888","path":"Sources/AppAuthCore/OIDURLSessionProvider.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98947fb2361c0d4368fd904380dd1fe9e8","path":"Sources/AppAuthCore/OIDURLSessionProvider.m","sourceTree":"","type":"file"},{"children":[{"fileType":"text.xml","guid":"bfdfe7dc352907fc980b868725387e989d84a52718b57739049593ec7bcff072","path":"Sources/AppAuthCore/Resources/PrivacyInfo.xcprivacy","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9877cd6794e00569611e166a3f7a08ba2b","name":"Resources","path":"","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98d08f54d789689910273f9d639b459cc8","name":"Core","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98b3716ecb0c024d9ef18f68b69c8158a2","path":"Sources/AppAuth.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9823384be1415a7877e48f5171447299f8","path":"Sources/AppAuth/iOS/OIDAuthorizationService+IOS.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98a2a2da1ddfaea3b65af8e838eda1801b","path":"Sources/AppAuth/iOS/OIDAuthorizationService+IOS.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98509446b0072e5954271274635428979c","path":"Sources/AppAuth/iOS/OIDAuthState+IOS.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e986097ce143d210733d4cd5a6931e9945b","path":"Sources/AppAuth/iOS/OIDAuthState+IOS.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98198d96dc450c1cc36c8ca6eeb3c414b3","path":"Sources/AppAuth/iOS/OIDExternalUserAgentCatalyst.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e981938333eaaabc912e9a23e645df1a738","path":"Sources/AppAuth/iOS/OIDExternalUserAgentCatalyst.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e982ed579646909ae779df947ba2cee76ec","path":"Sources/AppAuth/iOS/OIDExternalUserAgentIOS.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e981508f54d76dcf1db173212cb0be8edb3","path":"Sources/AppAuth/iOS/OIDExternalUserAgentIOS.m","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e9839e2d99fc63e972824102808bef26d6e","path":"Sources/AppAuth/iOS/OIDExternalUserAgentIOSCustomBrowser.h","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e9810a662b672b054d3256b0d25ff18f4c1","path":"Sources/AppAuth/iOS/OIDExternalUserAgentIOSCustomBrowser.m","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e986856b7a15326ff5b45f49d9f86e8530c","name":"ExternalUserAgent","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e98a830222decae294f3a10781be4b26dbb","path":"AppAuth.modulemap","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e983477a6fdc4e2b1bbe9f97774e92aa663","path":"AppAuth-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98c1b349814660604dbc0b89f95af79e46","path":"AppAuth-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e43cf557d526143cf699275a5b4f8387","path":"AppAuth-prefix.pch","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98d03e05f6007ca91f4e233e0c63c5d24e","path":"AppAuth-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98a553cb6838f3dba8465d8e4475e67146","path":"AppAuth.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98853e49f132a195ea0f4a3955deb01309","path":"AppAuth.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e983d4dca36ea8a8b407230830f5f3ba7e1","path":"ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e984056c6b96e252a923609b19f0891e5a8","name":"Support Files","path":"../Target Support Files/AppAuth","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9888ae708b9ac93674cce3c5d9870ef443","name":"AppAuth","path":"AppAuth","sourceTree":"","type":"group"},{"children":[{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98b17fa4f61002af61dca8ef19555e1ad7","path":"Maps/Sources/GMSEmpty.h","sourceTree":"","type":"file"},{"children":[{"fileType":"wrapper.xcframework","guid":"bfdfe7dc352907fc980b868725387e98f5918caddf1605180595cb5a59e5d0aa","path":"Maps/Frameworks/GoogleMaps.xcframework","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98fade93f106690b5b85c4424a70e455fc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.plug-in","guid":"bfdfe7dc352907fc980b868725387e98408aeea65f8576fdbf766a4c1aafc7f3","path":"Maps/Resources/GoogleMapsResources/GoogleMaps.bundle","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9873935b71edf4e25eee1adb09ae55e826","name":"Resources","path":"","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e9859a4c94802c672c416abde3aacf67f7d","name":"Maps","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"text.script.sh","guid":"bfdfe7dc352907fc980b868725387e983a09e518836ffde75d2db109b20689d8","path":"GoogleMaps-xcframeworks.sh","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9840ae838f8ac69bc67263efbe8dc323d7","path":"GoogleMaps.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e989bf599cd5d4dd79de867d43540047de6","path":"GoogleMaps.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98b3850507a8f0a625a0d17c35f2a58b3a","path":"ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98a00a9364e5b82c0cc31372b45e5c667a","name":"Support Files","path":"../Target Support Files/GoogleMaps","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98fbb0d2ca86f97f81f9296250e4ebe580","name":"GoogleMaps","path":"GoogleMaps","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e987499795ede0f363ffec6be78895828f1","path":"Sources/GMSEmpty.h","sourceTree":"","type":"file"},{"children":[{"fileType":"wrapper.xcframework","guid":"bfdfe7dc352907fc980b868725387e9868555a94cd20931acd3997de88163de1","path":"Frameworks/GoogleNavigation.xcframework","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9888918caa8fd6b2be4d6a192cb2590eca","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.plug-in","guid":"bfdfe7dc352907fc980b868725387e98313329d51e705fb6ce392e38d83a004c","path":"Resources/GoogleNavigationResources/GoogleNavigation.bundle","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e986b839ecd12da214c8a16f8c6781e7713","name":"Resources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"text.script.sh","guid":"bfdfe7dc352907fc980b868725387e9881d5507083d0435eb1c5cddb854f166a","path":"GoogleNavigation-xcframeworks.sh","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98d1b134ad118e25bf8a1dc2b9ce79ad5d","path":"GoogleNavigation.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9896631f0702bcaa9fd24776311b2cd48b","path":"GoogleNavigation.release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98994f35ef78cb59ed15d5545344a4baae","path":"ResourceBundle-GoogleNavigationResources-GoogleNavigation-Info.plist","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9838170b928976fc7786df0c5b32581ccc","name":"Support Files","path":"../Target Support Files/GoogleNavigation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98f6576953ab9932b83937bc0c0e3ff3ee","name":"GoogleNavigation","path":"GoogleNavigation","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98892c0c4a637713ed3f58ce0e458e284c","name":"Pods","path":"","sourceTree":"","type":"group"},{"guid":"bfdfe7dc352907fc980b868725387e987729b3ebc68336de79650ab01ec10ebd","name":"Products","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e98a3f4680c874ecbcb5b5a6338bc13a426","path":"Pods-Runner.modulemap","sourceTree":"","type":"file"},{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e9814181933c973297b0001d0e9ee64381d","path":"Pods-Runner-acknowledgements.markdown","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e9887440869a53d6020d968ddf6b9b30aa0","path":"Pods-Runner-acknowledgements.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98fed0970e703d355c9aff813f280aafdc","path":"Pods-Runner-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.script.sh","guid":"bfdfe7dc352907fc980b868725387e9826e505869a67d81656859ded68178c1d","path":"Pods-Runner-frameworks.sh","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e98de02ac5005ab1eb052abf25c63731e95","path":"Pods-Runner-Info.plist","sourceTree":"","type":"file"},{"fileType":"text.script.sh","guid":"bfdfe7dc352907fc980b868725387e98f6f4dcb116856f2da0fa97d3015cb1af","path":"Pods-Runner-resources.sh","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e980ec6fbca7264a6936f2adfc48dd7f5bc","path":"Pods-Runner-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e9850cc7fc2d23136fb4fac488d6c47df20","path":"Pods-Runner.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98dc1a21852c7a085c7dd8f65cf0fa9907","path":"Pods-Runner.profile.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98f17abf55d75f35efcaf45a1185b085b6","path":"Pods-Runner.release.xcconfig","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e98cf3c1972df678a5e36df75a46391500d","name":"Pods-Runner","path":"Target Support Files/Pods-Runner","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.module-map","guid":"bfdfe7dc352907fc980b868725387e984c4f55ec853c945e234980557a98aed8","path":"Pods-RunnerTests.modulemap","sourceTree":"","type":"file"},{"fileType":"text","guid":"bfdfe7dc352907fc980b868725387e98fc0f7e7242f459f81e455145932dcafd","path":"Pods-RunnerTests-acknowledgements.markdown","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e985f8b68b152f46f18718da20c04e675cb","path":"Pods-RunnerTests-acknowledgements.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.objc","guid":"bfdfe7dc352907fc980b868725387e98022654f1ff78dd844d694dba2439dab2","path":"Pods-RunnerTests-dummy.m","sourceTree":"","type":"file"},{"fileType":"text.plist.xml","guid":"bfdfe7dc352907fc980b868725387e989e5ad6b9a07953a12c7008a15bd9c99c","path":"Pods-RunnerTests-Info.plist","sourceTree":"","type":"file"},{"fileType":"sourcecode.c.h","guid":"bfdfe7dc352907fc980b868725387e98e5e8bcdff29e5f8321be18f7989b4bc7","path":"Pods-RunnerTests-umbrella.h","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98144cd18850e477837c238075d5256ffe","path":"Pods-RunnerTests.debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e981b663a2c82f0220040296818ba53477e","path":"Pods-RunnerTests.profile.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"bfdfe7dc352907fc980b868725387e98965b92d39d30a7872295adc2841cd1b1","path":"Pods-RunnerTests.release.xcconfig","sourceTree":"","type":"file"}],"guid":"bfdfe7dc352907fc980b868725387e9859551a2ccb1df711861b574920cd49bf","name":"Pods-RunnerTests","path":"Target Support Files/Pods-RunnerTests","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98dafc421ff02609f2772b356038eb9849","name":"Targets Support Files","path":"","sourceTree":"","type":"group"}],"guid":"bfdfe7dc352907fc980b868725387e98677e601b37074db53aff90e47c8f96d1","name":"Pods","path":"","sourceTree":"","type":"group"},"guid":"bfdfe7dc352907fc980b868725387e98","path":"/Users/mathias/Documents/workspaces/plan-b/ionic-planb-logistic-app-flutter/ios/Pods/Pods.xcodeproj","projectDirectory":"/Users/mathias/Documents/workspaces/plan-b/ionic-planb-logistic-app-flutter/ios/Pods","targets":["TARGET@v11_hash=dbe22f08507ba422117e4616d702a70b","TARGET@v11_hash=56d4b5dbc070619b45bcb8fa67be0916","TARGET@v11_hash=5ee2480b7016282a063177feec34a793","TARGET@v11_hash=f32ba23750f06681389652c970c295df","TARGET@v11_hash=d4c2dfe1c82b9f1fe908298a018f3d27","TARGET@v11_hash=1c322d24035314180dcc06d9b82d4453","TARGET@v11_hash=a78293cb463458b5b78ca80f9bbe12fb","TARGET@v11_hash=7200daa7f883a3806fb3e4ea0a33dd02","TARGET@v11_hash=090461bed40322fc2338fee106d50209","TARGET@v11_hash=f1d5c36cb9851cf3da3fce69122874c2","TARGET@v11_hash=d1ff5bc788ee416133388e9ae76c0c7c","TARGET@v11_hash=9feffb946ee5dc3c9ae6d823c221623f","TARGET@v11_hash=d6a81f9e86e100e257e8d3bc6e741a66","TARGET@v11_hash=8ad44ae314665e467f17894f6df93e19","TARGET@v11_hash=f5387cf66e419a71dc456a53cc623eb0","TARGET@v11_hash=7e451b007563cd4d039ce718bc2dfabb","TARGET@v11_hash=dd8486a3f0c065c51d9022853b270f61","TARGET@v11_hash=5b760cde3aeb165bf283f865099dee18","TARGET@v11_hash=218a8aa4a2b04f9e95c7fdf57e8198ae","TARGET@v11_hash=10b1a1a186b22fc70f7983c3b40a2d79","TARGET@v11_hash=c732ba7bc93e158af8e0366a49f8a690","TARGET@v11_hash=d4e63875c9ea3c3913c8d1a9d7061699","TARGET@v11_hash=40b9e801a33e4c1d591480fe975c3ea1","TARGET@v11_hash=0ff303e2827debc3c8810396cc67af05","TARGET@v11_hash=aca65a4ac792bfcb49344de32f1c3ca3"]} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=090461bed40322fc2338fee106d50209-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=090461bed40322fc2338fee106d50209-json new file mode 100644 index 0000000..cb3a3a4 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=090461bed40322fc2338fee106d50209-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98dbfbadcdcf06bb75f82d99bd1987f413","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/google_navigation_flutter","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"google_navigation_flutter","INFOPLIST_FILE":"Target Support Files/google_navigation_flutter/ResourceBundle-google_navigation_flutter_privacy_info-google_navigation_flutter-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"google_navigation_flutter_privacy_info","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e988425730c16bf04619a2e8ff8e598af88","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986fbad5942614a388f6084141625088fe","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/google_navigation_flutter","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"google_navigation_flutter","INFOPLIST_FILE":"Target Support Files/google_navigation_flutter/ResourceBundle-google_navigation_flutter_privacy_info-google_navigation_flutter-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","PRODUCT_NAME":"google_navigation_flutter_privacy_info","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9878f9daa92258a169175ea5d10ca08e09","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986fbad5942614a388f6084141625088fe","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/google_navigation_flutter","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"google_navigation_flutter","INFOPLIST_FILE":"Target Support Files/google_navigation_flutter/ResourceBundle-google_navigation_flutter_privacy_info-google_navigation_flutter-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","PRODUCT_NAME":"google_navigation_flutter_privacy_info","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9822546915a308e50f47af7633b933d597","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98084ecc203e0776bb45c61db5bf5438c1","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b2ac9aabfb4ea17c19b0f0dbc660b6c0","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e982d47e6d9df96d21c4ac2b81d688ce03c","guid":"bfdfe7dc352907fc980b868725387e98d0014e12ed3501862c4de827fac7da0f"}],"guid":"bfdfe7dc352907fc980b868725387e986513751e8f6bd2073ffe3aec8fdcc83a","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98ac39a888cfe1cb710fc82f373c10df1a","name":"google_navigation_flutter-google_navigation_flutter_privacy_info","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98f30d584e5ae71ad240f9f8224d5a008f","name":"google_navigation_flutter_privacy_info.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=0ff303e2827debc3c8810396cc67af05-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=0ff303e2827debc3c8810396cc67af05-json new file mode 100644 index 0000000..9321680 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=0ff303e2827debc3c8810396cc67af05-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98186e982df37db89fe49bcda3a9cd9b73","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/url_launcher_ios/url_launcher_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/url_launcher_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/url_launcher_ios/url_launcher_ios.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"url_launcher_ios","PRODUCT_NAME":"url_launcher_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98122b805f7f525279bb6deb5300d93081","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98ace0c0440e4b53ba3de29900f7d4bb7f","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/url_launcher_ios/url_launcher_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/url_launcher_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/url_launcher_ios/url_launcher_ios.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"url_launcher_ios","PRODUCT_NAME":"url_launcher_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9836f27bcc234abf2986ca9b92b69df1e1","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98ace0c0440e4b53ba3de29900f7d4bb7f","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/url_launcher_ios/url_launcher_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/url_launcher_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/url_launcher_ios/url_launcher_ios.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"url_launcher_ios","PRODUCT_NAME":"url_launcher_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9897fe953dffcda70db9a0a9a18bea5828","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98db7b71b228219f8f26f0bafe9eb43ec6","guid":"bfdfe7dc352907fc980b868725387e98488b1aae650ee0880687b46866424107","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e9803da34d77efef8ef3ce2c8ebbae5bdbc","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98b7252221f0161c250efbb96fc52217d6","guid":"bfdfe7dc352907fc980b868725387e98b601022445356af01022883682921784"},{"fileReference":"bfdfe7dc352907fc980b868725387e989af77d09fa1245b6555253650a221134","guid":"bfdfe7dc352907fc980b868725387e9857034e1f0d8193b3eeae18d73112eaa8"},{"fileReference":"bfdfe7dc352907fc980b868725387e986dffdaaee84db700ee3bcd7ab168bf38","guid":"bfdfe7dc352907fc980b868725387e9888b1e74e60918c1dda1636aa70ed211a"},{"fileReference":"bfdfe7dc352907fc980b868725387e981dcadcb091654ec4da2ce1421ee5075a","guid":"bfdfe7dc352907fc980b868725387e9848dc2950802138bfde14b3c059b49c6d"},{"fileReference":"bfdfe7dc352907fc980b868725387e98bb5a42296a20bddb1dc9e43645c62a4a","guid":"bfdfe7dc352907fc980b868725387e98461d292c7999348549470f3b6d9a8b7d"}],"guid":"bfdfe7dc352907fc980b868725387e98fa96dbb049cf26a8a5faf87ef8982665","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e982f8b7ae2e7caa8ede8091d9bb363b0d1"}],"guid":"bfdfe7dc352907fc980b868725387e988f4e5a15bd2f3cf26d08bb8eafccb083","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e9829873fc0097fc1cd118d2ea1c7a9e44f","targetReference":"bfdfe7dc352907fc980b868725387e9891b3b8cc56823cdea4b418e009a423b2"}],"guid":"bfdfe7dc352907fc980b868725387e98e31bb378ac96256438f4a2e26e722c1b","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e9891b3b8cc56823cdea4b418e009a423b2","name":"url_launcher_ios-url_launcher_ios_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e98903e66fa03d6d27edaa18126a82c20fd","name":"url_launcher_ios","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98f7a21f0cd31eecef97e8eaf4a819dde1","name":"url_launcher_ios.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=10b1a1a186b22fc70f7983c3b40a2d79-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=10b1a1a186b22fc70f7983c3b40a2d79-json new file mode 100644 index 0000000..251b0bb --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=10b1a1a186b22fc70f7983c3b40a2d79-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9850cc7fc2d23136fb4fac488d6c47df20","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-Runner/Pods-Runner-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-Runner/Pods-Runner.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9883083f6665db1689eff31735f69d6133","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98dc1a21852c7a085c7dd8f65cf0fa9907","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-Runner/Pods-Runner-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-Runner/Pods-Runner.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e985fcc45404ca0f74a16d703fef6559429","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f17abf55d75f35efcaf45a1185b085b6","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-Runner/Pods-Runner-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-Runner/Pods-Runner.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98781b008c917f67b3224dfcd4ee98afff","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e980ec6fbca7264a6936f2adfc48dd7f5bc","guid":"bfdfe7dc352907fc980b868725387e9808db80e0405a82efc10087f76e5d942d","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e981e02e76deecf9e70a94e8b6d42db48ea","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98fed0970e703d355c9aff813f280aafdc","guid":"bfdfe7dc352907fc980b868725387e98185464d45244e6750203fb23ef911f8a"}],"guid":"bfdfe7dc352907fc980b868725387e985e3cc5c8371682c776a7b261f5428c2c","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98c29919d8394910f17d0cc8a125b2cbc4"}],"guid":"bfdfe7dc352907fc980b868725387e98aa36fcd7c9dcf5ebbe4a1d64591d4749","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e987ffc3c8a59dc72de919cff73e32677f8","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e98758cc842172da540ffb591e63e38dc1e","name":"AppAuth"},{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e9818352c54edac2258b91768852065ce5e","name":"GoogleMaps"},{"guid":"bfdfe7dc352907fc980b868725387e98282d9246524ea316059ab11846dac3ef","name":"GoogleNavigation"},{"guid":"bfdfe7dc352907fc980b868725387e98b70a033634f3eb6130de4681c3abbaf4","name":"flutter_appauth"},{"guid":"bfdfe7dc352907fc980b868725387e987cb9c58d33d05677fb576674bac57313","name":"flutter_secure_storage"},{"guid":"bfdfe7dc352907fc980b868725387e98e1e2853c99aaf00c005e30b63a83aa7b","name":"google_navigation_flutter"},{"guid":"bfdfe7dc352907fc980b868725387e981f000f066404b97b12e9c4ca84d38d0f","name":"image_picker_ios"},{"guid":"bfdfe7dc352907fc980b868725387e9830037b09fee48cfce1f8562d753688c8","name":"path_provider_foundation"},{"guid":"bfdfe7dc352907fc980b868725387e98ef10255b706f98e1e88fae00855b0968","name":"permission_handler_apple"},{"guid":"bfdfe7dc352907fc980b868725387e9828cab1f188854e0a973e6ff6905c5ffe","name":"shared_preferences_foundation"},{"guid":"bfdfe7dc352907fc980b868725387e98903e66fa03d6d27edaa18126a82c20fd","name":"url_launcher_ios"}],"guid":"bfdfe7dc352907fc980b868725387e98312b4bc59bbbe2c06c205bf4da6737f5","name":"Pods-Runner","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98699846e06e93b50cafdb00290784c775","name":"Pods_Runner.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=1c322d24035314180dcc06d9b82d4453-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=1c322d24035314180dcc06d9b82d4453-json new file mode 100644 index 0000000..cedaa7e --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=1c322d24035314180dcc06d9b82d4453-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984bc9977ccf8ea20d6d7539e56853e7a7","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/flutter_secure_storage/flutter_secure_storage-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage/flutter_secure_storage-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/flutter_secure_storage/flutter_secure_storage.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"flutter_secure_storage","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9873b37c726c7d99f6b4540e614b0109a7","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987ba9ebb08e6d0c50675558e6cd7e065a","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/flutter_secure_storage/flutter_secure_storage-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage/flutter_secure_storage-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/flutter_secure_storage/flutter_secure_storage.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"flutter_secure_storage","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9809ebf2a6dc60a931630ad21c60282d3b","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987ba9ebb08e6d0c50675558e6cd7e065a","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/flutter_secure_storage/flutter_secure_storage-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage/flutter_secure_storage-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/flutter_secure_storage/flutter_secure_storage.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"flutter_secure_storage","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e981ca331f5466427dac5a2e38ef01d35df","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9892bc0aac9f1e7107a9ef5c6307fecd15","guid":"bfdfe7dc352907fc980b868725387e98ce6831bac18cbeb7e5a9351716ec2253","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98023666f24285e70b40c8e67bd2e3f0e2","guid":"bfdfe7dc352907fc980b868725387e98f4c063e786304ea70ea66e71fb24b985","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98bbaa78cfd07f539332f199b5309e72fa","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98d80af9fba9ebe07411f489f41e0b5e8d","guid":"bfdfe7dc352907fc980b868725387e98dd6d0696eca631cbd4754996583f0dc0"},{"fileReference":"bfdfe7dc352907fc980b868725387e98794cadb55eb92731ccf3f8b7477df719","guid":"bfdfe7dc352907fc980b868725387e98c8f51fb8563f5ffc228ea9730dc8f837"},{"fileReference":"bfdfe7dc352907fc980b868725387e987afa0de80e2d260eb9306c9bd81b1099","guid":"bfdfe7dc352907fc980b868725387e98e05d3515eb8ec30499cb4c237d9c42e9"},{"fileReference":"bfdfe7dc352907fc980b868725387e9831458179f4c5fff40cece8411afaf95f","guid":"bfdfe7dc352907fc980b868725387e98c2137a94fa0f5f41d7af12d131e5e55a"}],"guid":"bfdfe7dc352907fc980b868725387e989bb4035e1834069bb4b03b857deef812","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e982d561ff053064321268359420b2fbf39"}],"guid":"bfdfe7dc352907fc980b868725387e98357b3098c46ff524d059b565032fdeab","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98e724484211fa57aa3aed00ae1fd26776","targetReference":"bfdfe7dc352907fc980b868725387e98a0220561f537715e864e45aed9ae8b8b"}],"guid":"bfdfe7dc352907fc980b868725387e989ed7108ea85c2c72a620a4eb5b0b4f9d","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e98a0220561f537715e864e45aed9ae8b8b","name":"flutter_secure_storage-flutter_secure_storage"}],"guid":"bfdfe7dc352907fc980b868725387e987cb9c58d33d05677fb576674bac57313","name":"flutter_secure_storage","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98fcf30ddf72cafad1f7db74497181d346","name":"flutter_secure_storage.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=218a8aa4a2b04f9e95c7fdf57e8198ae-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=218a8aa4a2b04f9e95c7fdf57e8198ae-json new file mode 100644 index 0000000..ca879fa --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=218a8aa4a2b04f9e95c7fdf57e8198ae-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9809a5e132d0bce4b05c12cea0e4f26a78","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f65e10bb99e854e0cc7509debc58eedd","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e985b9fdf58418402c948d4991249b30dbb","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98775205cab9cc69004f1881a742848df9","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e985b9fdf58418402c948d4991249b30dbb","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9861637f9d7c181f34b6eb91234bddf3bb","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98c999d175d05b2ce9d81b763071090865","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f889cfefd0bf287bd2013035807b1424","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98b0de2f55c3fa51a2b67df83a91ae1558","guid":"bfdfe7dc352907fc980b868725387e98ef8b7facad315a0cd677b9b49dcabc5c"}],"guid":"bfdfe7dc352907fc980b868725387e980919813a8512a4a7a7c118b27811ad03","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9802f35ab680609a626ebd2ddd692a3822","name":"permission_handler_apple-permission_handler_apple_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e983e9a904e8a35cb34b69458780be142b3","name":"permission_handler_apple_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=40b9e801a33e4c1d591480fe975c3ea1-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=40b9e801a33e4c1d591480fe975c3ea1-json new file mode 100644 index 0000000..d9eccda --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=40b9e801a33e4c1d591480fe975c3ea1-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f1732f50402cdd4e9a853378f00de46e","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"shared_preferences_foundation","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"shared_preferences_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9879cd8058020a002dfe7e9109fbf5676e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98039c35627e5877b409f4593c36b6bc93","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"shared_preferences_foundation","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"shared_preferences_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9805a105575397cbcb6f40d7a2393aedf9","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98039c35627e5877b409f4593c36b6bc93","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"shared_preferences_foundation","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"shared_preferences_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e70c783857c2a5a5e29a7fde8d966f22","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98df4882dcf02067cf04442b892634f193","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e985e634fd0c7bd475437a24d1d427d6da6","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f3d0465172c96a1dfd43d18de6cea13","guid":"bfdfe7dc352907fc980b868725387e98fc24d024cce2dcad61967ac7ff914de5"}],"guid":"bfdfe7dc352907fc980b868725387e98c57e20215c49486fc7747013bd122091","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98e0be3b0d5ad56f1985578b1f97431765","name":"shared_preferences_foundation-shared_preferences_foundation_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98ad625504a4c1e61077bbfd33bd1d1785","name":"shared_preferences_foundation_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=56d4b5dbc070619b45bcb8fa67be0916-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=56d4b5dbc070619b45bcb8fa67be0916-json new file mode 100644 index 0000000..8b39cd3 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=56d4b5dbc070619b45bcb8fa67be0916-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a553cb6838f3dba8465d8e4475e67146","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"AppAuth","INFOPLIST_FILE":"Target Support Files/AppAuth/ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"AppAuthCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e987a58b89697ac11d5cd7aa9ea7e5ed515","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98853e49f132a195ea0f4a3955deb01309","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"AppAuth","INFOPLIST_FILE":"Target Support Files/AppAuth/ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"AppAuthCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e988e9e2d6b0ade9690428756259b370014","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98853e49f132a195ea0f4a3955deb01309","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"AppAuth","INFOPLIST_FILE":"Target Support Files/AppAuth/ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"AppAuthCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f0899d0d854cbd1492e7012d43dd11f1","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f004de48ea7a130bf06566a96a8fd5b8","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e987a8ae5e49417276ebd4edead04f3b8af","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989d84a52718b57739049593ec7bcff072","guid":"bfdfe7dc352907fc980b868725387e98a5c2b76e6cf4ecbfd0686fc649197696"}],"guid":"bfdfe7dc352907fc980b868725387e9877692e6ddd8fbe2f1e7a91acf593f15e","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98410c96b4e26fc36411e63b84c3491605","name":"AppAuth-AppAuthCore_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e986d566b0f46776138a3ba88837e01b2bf","name":"AppAuthCore_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=5b760cde3aeb165bf283f865099dee18-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=5b760cde3aeb165bf283f865099dee18-json new file mode 100644 index 0000000..3336c49 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=5b760cde3aeb165bf283f865099dee18-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9809a5e132d0bce4b05c12cea0e4f26a78","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"permission_handler_apple","PRODUCT_NAME":"permission_handler_apple","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98519c0f1aabf34eacbf6f755b813f1496","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e985b9fdf58418402c948d4991249b30dbb","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"permission_handler_apple","PRODUCT_NAME":"permission_handler_apple","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98ec62137b0ee28ca4265944856877be27","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e985b9fdf58418402c948d4991249b30dbb","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"permission_handler_apple","PRODUCT_NAME":"permission_handler_apple","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9832ebf16d88dad2729e444c32094aa46a","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e982914bd5a57bbc9144e4abb998062d952","guid":"bfdfe7dc352907fc980b868725387e982ef32830090a5f180689e16980928fd2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9868e11c3650d5b780ad237288c9b33716","guid":"bfdfe7dc352907fc980b868725387e985a916ced4ab8bf3396d2522efbf655a2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e987605b982c570b8061c7e6f0c100dcf85","guid":"bfdfe7dc352907fc980b868725387e98ff53f399fa1e2ecb7849daf4286e9ade","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98bc814483dec2898e547899781f3fbc59","guid":"bfdfe7dc352907fc980b868725387e988ad8e0322ec48311f0d9e5a75f54c724","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b9bd810d63c02d3414111ec00704c748","guid":"bfdfe7dc352907fc980b868725387e98b11ed937bba18c7408a49a9a028bb33f","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e981a3600ac4816a4f4e00978522f187f59","guid":"bfdfe7dc352907fc980b868725387e983d80b84cb41fbc5fdcc8bc3d451f292d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98764e1a4ea4313a8a5fb54ace24a1195e","guid":"bfdfe7dc352907fc980b868725387e983bf5db94459714fd2562bfa5ba3794e6","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f12f7d68c5db61a96c17051780750a67","guid":"bfdfe7dc352907fc980b868725387e98b4cf2c1398499b177aa5f12416a2cefc","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d57860c863d76b575797cec161e52653","guid":"bfdfe7dc352907fc980b868725387e98a5931e111640051bba64bb234ef28a63","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e981bac7df9b8ecf4e5a9d0d795237507cf","guid":"bfdfe7dc352907fc980b868725387e984e2d3cd6dd0a8b8ce5a9345bf5eed7de","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ee8170124b7c6572e5358a6462797952","guid":"bfdfe7dc352907fc980b868725387e984bcefc59b1341fdd0e8bad71dba39c92","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e989006e826667b63c3d132e68aa8ec7e32","guid":"bfdfe7dc352907fc980b868725387e98c7eb3ea66f1fa44a1f5858283c92137d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e3f55151c2f223b88de1713607b633a4","guid":"bfdfe7dc352907fc980b868725387e98dc02dbc796bf1a1c79ffc8c7bf3cea72","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98de3972120fd5b87af1a609cbacb50f8f","guid":"bfdfe7dc352907fc980b868725387e98cdc5844f930b9d0fd5308dd5856a500e","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f6425cfc4394b6884fc4335a6778dbfa","guid":"bfdfe7dc352907fc980b868725387e988f5bb97be79cc2d8abff7c92bd4b7567","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e985e1d40f284ddf14f29cbb7bf00a7fb66","guid":"bfdfe7dc352907fc980b868725387e983de4f1e8f5a97a6028a6bb34227f49d6","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986cad7176e3315a8b1c316098566743e5","guid":"bfdfe7dc352907fc980b868725387e98f2f63511bf606bb48ce3eb1b71b306f4","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9842be4cdb3d0bcb79d58ac5b3f0009648","guid":"bfdfe7dc352907fc980b868725387e98327b38ee62f98da7d09431ea5004a053","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98089cd36b188b988d0552474432b82b3a","guid":"bfdfe7dc352907fc980b868725387e980188baa19b7914aff2e34c8da54773e1","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e941ee58c8500bf5ca61eaaa3c72d775","guid":"bfdfe7dc352907fc980b868725387e9812d25da0977d54b4f93c43814429ebf2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a631e34844979b87593c681b53e3020b","guid":"bfdfe7dc352907fc980b868725387e98b9ff284581573c4ba830aef19b6cb271","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9824a6e6a924d403a44b98b53919ba7cf9","guid":"bfdfe7dc352907fc980b868725387e98938189fe00ada6ed049fb839ef6bf7d6","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e980e829c91332f0029d9c98218888c6b41","guid":"bfdfe7dc352907fc980b868725387e9864333a3fadcb2636b3f7fea467c141f6","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e986a03fa67e33d48dce94be2b8eb2259ec","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e981fdb25bd3d86d356b093955f08d75309","guid":"bfdfe7dc352907fc980b868725387e982a61503d8185fa65d0d61935791efb04"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c0b3f6133f3ce5b0adacb28030e2d58a","guid":"bfdfe7dc352907fc980b868725387e9835220589345efb92af42631dbf6b9459"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a86c5518f58c878cbef74c717a7d3271","guid":"bfdfe7dc352907fc980b868725387e98c4ed4b65682f6200b53ab06f33e7c896"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d3a4eec656b805de6f66a16c5ca4b68d","guid":"bfdfe7dc352907fc980b868725387e98f67d51cdaaf5e1f78be421f374efde62"},{"fileReference":"bfdfe7dc352907fc980b868725387e984af88dfdfa896380c1660dae222defed","guid":"bfdfe7dc352907fc980b868725387e98aa97ddbe032d174d7e0e5ddbc64b9d5c"},{"fileReference":"bfdfe7dc352907fc980b868725387e98407be5ef3da4f1421ce5d35fbc700c05","guid":"bfdfe7dc352907fc980b868725387e98ff8928328841298b0ed62804c598770b"},{"fileReference":"bfdfe7dc352907fc980b868725387e985ac597a5da324446864ce858e7456b94","guid":"bfdfe7dc352907fc980b868725387e98ef84c0ffd43efae0c864668786839def"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e86e05137ebe6730ea8f31eec8a0c369","guid":"bfdfe7dc352907fc980b868725387e9848cadd1ba7bb24a85b533aabf8e22799"},{"fileReference":"bfdfe7dc352907fc980b868725387e989bccbde9f4b849351b6ad5c0384d17df","guid":"bfdfe7dc352907fc980b868725387e9821497750e138db752421f5224d128654"},{"fileReference":"bfdfe7dc352907fc980b868725387e986cbc2eb8408559946efdafa013a7c63e","guid":"bfdfe7dc352907fc980b868725387e984a4a9db5329a7711e351ab57794c53a4"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c0731b099cec2e912468e174487ddcbd","guid":"bfdfe7dc352907fc980b868725387e9833885db617a4d69d1571730987fbd3fb"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f261e23f41d3399fadf8704c49625f41","guid":"bfdfe7dc352907fc980b868725387e9824cbbfe0ddc5f68e6717f61ca670184f"},{"fileReference":"bfdfe7dc352907fc980b868725387e987a4e3c98281f91014711aad11f4f0b3f","guid":"bfdfe7dc352907fc980b868725387e981850b344567e5543096f0a83d9eac0b2"},{"fileReference":"bfdfe7dc352907fc980b868725387e989bfeb447680565b0927f4ea9696170ea","guid":"bfdfe7dc352907fc980b868725387e984e5371b8cd4eca1a3ea6dfcf7d307c37"},{"fileReference":"bfdfe7dc352907fc980b868725387e9811d0d8c6a8c04ff508b09b223f0997d8","guid":"bfdfe7dc352907fc980b868725387e98d3572e24141325a30bc3c0a31c41fa85"},{"fileReference":"bfdfe7dc352907fc980b868725387e98fdbf6aef7e062c73fb12df6f519d18a9","guid":"bfdfe7dc352907fc980b868725387e98b2f53712d1d0af9bc7d13919388a2c6d"},{"fileReference":"bfdfe7dc352907fc980b868725387e9841f8dcd3372926c521f9f342e8859314","guid":"bfdfe7dc352907fc980b868725387e98e29bf2527a03f8a7f0ee4f8fb682157b"},{"fileReference":"bfdfe7dc352907fc980b868725387e98854698455cffb06209a219460d90327e","guid":"bfdfe7dc352907fc980b868725387e9827d1f3d71d300da27dcd08b0f8c4d523"},{"fileReference":"bfdfe7dc352907fc980b868725387e981118b9c6209260d6e4c3d279b9e48767","guid":"bfdfe7dc352907fc980b868725387e98eee17b6918192a58e3242e8202b1af3d"},{"fileReference":"bfdfe7dc352907fc980b868725387e986e722d11c3ea8ff538bcd965964c0f18","guid":"bfdfe7dc352907fc980b868725387e98319f0ee3ee4a0d94236a327f7214191b"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e2336c5d329fa45b01139b0d38fb6bdd","guid":"bfdfe7dc352907fc980b868725387e9889d6808f96db31c0fa88901646d50905"}],"guid":"bfdfe7dc352907fc980b868725387e98be6229230a4715433df2f8e74fbafc5b","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e980797c2152e50219ee4196549bb34f857"}],"guid":"bfdfe7dc352907fc980b868725387e984d290968aff9eafa4ed5b85c80a8c610","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98fa0d11ed0b4e1a85c13d68e37d1547e0","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e9802f35ab680609a626ebd2ddd692a3822","name":"permission_handler_apple-permission_handler_apple_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e98ef10255b706f98e1e88fae00855b0968","name":"permission_handler_apple","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98f8f53f8ba4165e76c7481b24262177ed","name":"permission_handler_apple.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=5ee2480b7016282a063177feec34a793-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=5ee2480b7016282a063177feec34a793-json new file mode 100644 index 0000000..5a54064 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=5ee2480b7016282a063177feec34a793-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9865adcbbcb4ec1b3c452a31ac4e82f814","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","ONLY_ACTIVE_ARCH":"NO","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2"},"guid":"bfdfe7dc352907fc980b868725387e980bc977b873df9b0e01b3c822e5c77429","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98236686288fbfe9faab703dc7debfa1a3","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e98b75274b69084014a6a5ac37ea7a9d4bc","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98236686288fbfe9faab703dc7debfa1a3","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e988b8e6347e534cb57e9bb1b22dc47b716","name":"Release"}],"buildPhases":[],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0}],"type":"aggregate"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=7200daa7f883a3806fb3e4ea0a33dd02-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=7200daa7f883a3806fb3e4ea0a33dd02-json new file mode 100644 index 0000000..d475e6b --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=7200daa7f883a3806fb3e4ea0a33dd02-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98dbfbadcdcf06bb75f82d99bd1987f413","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/google_navigation_flutter/google_navigation_flutter-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/google_navigation_flutter/google_navigation_flutter-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/google_navigation_flutter/google_navigation_flutter.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"google_navigation_flutter","PRODUCT_NAME":"google_navigation_flutter","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98d07ed56b23e8fb6ed7823b2e10a251ac","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986fbad5942614a388f6084141625088fe","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/google_navigation_flutter/google_navigation_flutter-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/google_navigation_flutter/google_navigation_flutter-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/google_navigation_flutter/google_navigation_flutter.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"google_navigation_flutter","PRODUCT_NAME":"google_navigation_flutter","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e983b9f885b29d4e66479b67d04df09cfc5","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986fbad5942614a388f6084141625088fe","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/google_navigation_flutter/google_navigation_flutter-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/google_navigation_flutter/google_navigation_flutter-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/google_navigation_flutter/google_navigation_flutter.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"google_navigation_flutter","PRODUCT_NAME":"google_navigation_flutter","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e983ff00521a17a76f43240cc76094b627c","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e987c39ebcc162b6860a4b63c73ba4fd5fd","guid":"bfdfe7dc352907fc980b868725387e98f4b717507ceabe1345347de932b5a96e","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98b7c5c844c012f7001d7f74c75330d5e3","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e987681c35f2fd4b602c038c149985a5dee","guid":"bfdfe7dc352907fc980b868725387e986e9047ab64e0b529358e7a05b22b6a26"},{"fileReference":"bfdfe7dc352907fc980b868725387e982674cb57c94d133fab13bb5338e9acd5","guid":"bfdfe7dc352907fc980b868725387e98332f66e2379a23067e2e28de06d4545a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f17ec0616e78ad58f93f3884865dc50b","guid":"bfdfe7dc352907fc980b868725387e9806dafccdffa7bf3116e92ce2045aaaae"},{"fileReference":"bfdfe7dc352907fc980b868725387e98865ffdb7d9e6debf42a9eadf208216b7","guid":"bfdfe7dc352907fc980b868725387e988b7e221aadd24428188408dd9ac31ddc"},{"fileReference":"bfdfe7dc352907fc980b868725387e9825b5b7f4c399e3bd9fc4e3f18c520be8","guid":"bfdfe7dc352907fc980b868725387e987693767e4ace68e49c770b8d82e9261e"},{"fileReference":"bfdfe7dc352907fc980b868725387e987056dfe90ec2eed563217d38f4c1999e","guid":"bfdfe7dc352907fc980b868725387e98b1c44bbb83972a31bcaeaf863229541b"},{"fileReference":"bfdfe7dc352907fc980b868725387e9819197270afa464fa6e01f7299f7decf6","guid":"bfdfe7dc352907fc980b868725387e984f2de03a1cf7b1268d6010135cee6ef8"},{"fileReference":"bfdfe7dc352907fc980b868725387e98bcdd2eeea62f74c4cf89c85a64666777","guid":"bfdfe7dc352907fc980b868725387e98e9e0db659a6585b115ff87e22b847a42"},{"fileReference":"bfdfe7dc352907fc980b868725387e983c3d0b4f6b23240126abfd5c470bc141","guid":"bfdfe7dc352907fc980b868725387e98bdd0de1bf143ddef72b83efe817b599a"},{"fileReference":"bfdfe7dc352907fc980b868725387e989c356d3bb4c123219c281c139ef833ec","guid":"bfdfe7dc352907fc980b868725387e9862354435f5cbacdd2bb11607fe4e2702"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a5393baffa7c968f8327f46e6c1eb47b","guid":"bfdfe7dc352907fc980b868725387e98623793d26c112229e48df13d71e3e7fa"},{"fileReference":"bfdfe7dc352907fc980b868725387e98908e147e20200457b015313b53e6c212","guid":"bfdfe7dc352907fc980b868725387e98c8775d17d00d334950edb5ac01de1b78"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f2c849eece1100d8784de11c28fb1cad","guid":"bfdfe7dc352907fc980b868725387e988fb605ba57553a87deaf78a04865a9d4"},{"fileReference":"bfdfe7dc352907fc980b868725387e987faade7981203fba9f3033f647406bab","guid":"bfdfe7dc352907fc980b868725387e9816921de0270cce19669ff930f11a373c"},{"fileReference":"bfdfe7dc352907fc980b868725387e98317648bc5b55016f3f3ce840d157d420","guid":"bfdfe7dc352907fc980b868725387e98210477ab6af231fcf28d73a7fe867e65"},{"fileReference":"bfdfe7dc352907fc980b868725387e988a18c8852784e081cbf0a098dafa5508","guid":"bfdfe7dc352907fc980b868725387e98191e4fa1cf722d8bcd1a535a82c18644"},{"fileReference":"bfdfe7dc352907fc980b868725387e9859a909a44aedf804195f16f281d9c5df","guid":"bfdfe7dc352907fc980b868725387e986ff6a079dada740c983a720d35e36020"},{"fileReference":"bfdfe7dc352907fc980b868725387e98dc25ec9b0d1406be3cea65c605b15d89","guid":"bfdfe7dc352907fc980b868725387e98fc6d3364398a3533c0ef31fe58f160e8"},{"fileReference":"bfdfe7dc352907fc980b868725387e98724d7a7bf5633c2f968d9ed7075a34ca","guid":"bfdfe7dc352907fc980b868725387e98cef83ed443a614781b48a29c89ea9509"},{"fileReference":"bfdfe7dc352907fc980b868725387e9822a3ba5407bed0e040774b6d1b1ebac3","guid":"bfdfe7dc352907fc980b868725387e988777d9c9656e9dc254244851574ef364"},{"fileReference":"bfdfe7dc352907fc980b868725387e9827505e42c992393574205a59da5805b4","guid":"bfdfe7dc352907fc980b868725387e9802a3bb5ded0c7f14e86818791b1c0700"},{"fileReference":"bfdfe7dc352907fc980b868725387e988ec9c829964d07c03a7abec078247010","guid":"bfdfe7dc352907fc980b868725387e98b63a128ce53004dbfa205dc6a0e2523c"},{"fileReference":"bfdfe7dc352907fc980b868725387e980916d642c9e36c898723754a5f6eb0f9","guid":"bfdfe7dc352907fc980b868725387e98ac7e0723c675c5719626d4cd1e2f8921"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c992f6945608c6e82e920c8fb3a3fb08","guid":"bfdfe7dc352907fc980b868725387e98a5cf1979d83cb5913ede3f42d16b700d"},{"fileReference":"bfdfe7dc352907fc980b868725387e984ada040ae8234a88b1bfcd1e1f84e508","guid":"bfdfe7dc352907fc980b868725387e983e14ef4ccf1cdc0d5504c979111e3216"},{"fileReference":"bfdfe7dc352907fc980b868725387e9845148609b454ce4f4f5992da2534c515","guid":"bfdfe7dc352907fc980b868725387e98f447d3053e2bd24415bdc6ce531a91ed"},{"fileReference":"bfdfe7dc352907fc980b868725387e987ffb8160ae212d180965edf5cc6088a1","guid":"bfdfe7dc352907fc980b868725387e988e3eb465af42bf7a9813fd3362494a41"},{"fileReference":"bfdfe7dc352907fc980b868725387e98985f6c376d078e16f1b35a3aa6290ddf","guid":"bfdfe7dc352907fc980b868725387e982b1922e0a2ddaced6e6336f615de5ea3"}],"guid":"bfdfe7dc352907fc980b868725387e98a677ab2ee57da8e91d983d36cf5fb895","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98fe35db379253cf1f76f6491a6b5e6532"}],"guid":"bfdfe7dc352907fc980b868725387e98931db03624cc57f52901a76136bba923","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98a90ca879bd34e13cf13bd47979677a53","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e98282d9246524ea316059ab11846dac3ef","name":"GoogleNavigation"},{"guid":"bfdfe7dc352907fc980b868725387e98ac39a888cfe1cb710fc82f373c10df1a","name":"google_navigation_flutter-google_navigation_flutter_privacy_info"}],"guid":"bfdfe7dc352907fc980b868725387e98e1e2853c99aaf00c005e30b63a83aa7b","name":"google_navigation_flutter","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98b8dca72f6f09b3f0b8f5ef0d49e96118","name":"google_navigation_flutter.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=7e451b007563cd4d039ce718bc2dfabb-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=7e451b007563cd4d039ce718bc2dfabb-json new file mode 100644 index 0000000..d53370f --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=7e451b007563cd4d039ce718bc2dfabb-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a69fd7bcabc0a20fae04fd73fa52549d","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"path_provider_foundation","PRODUCT_NAME":"path_provider_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98abcbd7caff7d55009130e55c5660bd79","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9830121d4cd39b9b5353e3bd656ff5f0e5","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"path_provider_foundation","PRODUCT_NAME":"path_provider_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98095cf2bc4301a027bcd3f0239f20ad19","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9830121d4cd39b9b5353e3bd656ff5f0e5","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"path_provider_foundation","PRODUCT_NAME":"path_provider_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e980cdeba6fb4de72c890032a8260a32806","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98050c696288637966e8ed2d33e420d592","guid":"bfdfe7dc352907fc980b868725387e98e40234757d04478dc54a213f59e845fa","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98450b40315711083d32b0ed949174ff28","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98026c1dd099574f7f5fcb70e985487254","guid":"bfdfe7dc352907fc980b868725387e986d52d7b041a5cde7157469e2d097610f"},{"fileReference":"bfdfe7dc352907fc980b868725387e987e4d4f66b5ef48bcdbeaa50b5d10d2fa","guid":"bfdfe7dc352907fc980b868725387e986dfc1b5ca512f6383be32a7124385963"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ad0bf19cb89fed543df4d4bac63fea0f","guid":"bfdfe7dc352907fc980b868725387e981715142e88d67db8df1e4c6c941cecb7"}],"guid":"bfdfe7dc352907fc980b868725387e98f5d455158bacea210fd45e1a8f3245fc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e9829f34398048903731961241124ac546e"}],"guid":"bfdfe7dc352907fc980b868725387e987ebedde198dc993f3ca38aec4ed08768","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98234997a2811e55e2dfc23faf0b9d3093","targetReference":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5"}],"guid":"bfdfe7dc352907fc980b868725387e98ac45f7d09c5ae0c1d8f7eb8e8ff004ab","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5","name":"path_provider_foundation-path_provider_foundation_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e9830037b09fee48cfce1f8562d753688c8","name":"path_provider_foundation","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98177b75fe6f519d73b22b382cca137f1c","name":"path_provider_foundation.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=8ad44ae314665e467f17894f6df93e19-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=8ad44ae314665e467f17894f6df93e19-json new file mode 100644 index 0000000..c7c6bbf --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=8ad44ae314665e467f17894f6df93e19-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98067c4bb9648cff0393e17526af5710e3","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_picker_ios/image_picker_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_picker_ios/image_picker_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_picker_ios/image_picker_ios.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_picker_ios","PRODUCT_NAME":"image_picker_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e983e3d1483ee56c7cbfba0c94d54707d94","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982e9c5f9312975795324f63668491a40d","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_picker_ios/image_picker_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_picker_ios/image_picker_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_picker_ios/image_picker_ios.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_picker_ios","PRODUCT_NAME":"image_picker_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98e06efb2eb8eed3db2564502c69377434","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982e9c5f9312975795324f63668491a40d","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_picker_ios/image_picker_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_picker_ios/image_picker_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_picker_ios/image_picker_ios.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_picker_ios","PRODUCT_NAME":"image_picker_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9887f0eada0ed32756d60b33b254ba4733","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e986fb281191d98309c542430dc009eb642","guid":"bfdfe7dc352907fc980b868725387e9833c0b95ef7427cea38d8299524cffd23","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e984647714c8322b90b54acd21f377b4d64","guid":"bfdfe7dc352907fc980b868725387e9882f508d28842c3cb0d4c8526f0d912e7","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9897e14c7b68b35325c5b0ee94d79c95e5","guid":"bfdfe7dc352907fc980b868725387e98a001b19c2c58a41ed3b60348a30cae53","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e983160aa790e646d347321c2925158f535","guid":"bfdfe7dc352907fc980b868725387e9816559d3363aa0c188520d2cdc284f8f9","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e982f841768f479bfd8a90a095f81317f42","guid":"bfdfe7dc352907fc980b868725387e98d824e5edbac9139e8e76b1f81b37db5d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e988b8d9c28ef57afbf8a2f230537cd2a9e","guid":"bfdfe7dc352907fc980b868725387e98be8e75ba0bf53dffb9317bc27a4e62f7","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986e9a1a00a8ce648c1bf978dd9612b5b0","guid":"bfdfe7dc352907fc980b868725387e98e486ce7070bb33b49e3806555435e647","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a4773f9f174b3b575c3f42baec0ccb45","guid":"bfdfe7dc352907fc980b868725387e98c3a4727b51f5ddf5bf5f1d7136e110a4","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e987c543487347cac13b6462fae62598e7f","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e983b93f8378f7fb936e6af30ae0fc031d1","guid":"bfdfe7dc352907fc980b868725387e9857f9d7b784d4665700c85da60d51451a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98192342f3a1e6fa7d8df75518a6291d0e","guid":"bfdfe7dc352907fc980b868725387e988d747abd00f3436dee440db4bce7edd6"},{"fileReference":"bfdfe7dc352907fc980b868725387e9829e95c77842c314f38f44ac82c8454f5","guid":"bfdfe7dc352907fc980b868725387e98fd6c309505698e460c426edb1f7ebf15"},{"fileReference":"bfdfe7dc352907fc980b868725387e9864a73f328b5c201f83394f7f6c366f54","guid":"bfdfe7dc352907fc980b868725387e9898167fe127c500ea014c57af9d1ebec9"},{"fileReference":"bfdfe7dc352907fc980b868725387e981be133ce6f86b018d63304f3d4e9658b","guid":"bfdfe7dc352907fc980b868725387e982c9ed5da1450079dd7c0bca5a54f2f84"},{"fileReference":"bfdfe7dc352907fc980b868725387e98303186399ac85940583f4fe342f70d42","guid":"bfdfe7dc352907fc980b868725387e98e0ab939fbafbd88342244f2b4a6d7f2e"},{"fileReference":"bfdfe7dc352907fc980b868725387e98dcc5bca963f8679615856c45076d0d2f","guid":"bfdfe7dc352907fc980b868725387e9875bed3f5f79f84632cf242936dd458c1"}],"guid":"bfdfe7dc352907fc980b868725387e98ce67561b68c83c2e24888c94da999914","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98cf1fddec899afc6c9825c5eb5ec44493"}],"guid":"bfdfe7dc352907fc980b868725387e98434353ef3b38c3699582ee30b73fe6a8","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e9872ef11792920b3966776ea469c5092df","targetReference":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d"}],"guid":"bfdfe7dc352907fc980b868725387e9811e9e8a5f23273fd9234f4740a75ccb9","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d","name":"image_picker_ios-image_picker_ios_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e981f000f066404b97b12e9c4ca84d38d0f","name":"image_picker_ios","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e988e06e8c3685b7c12032d8059f412f4cb","name":"image_picker_ios.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=9feffb946ee5dc3c9ae6d823c221623f-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=9feffb946ee5dc3c9ae6d823c221623f-json new file mode 100644 index 0000000..5e4b868 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=9feffb946ee5dc3c9ae6d823c221623f-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1b134ad118e25bf8a1dc2b9ce79ad5d","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","ONLY_ACTIVE_ARCH":"NO","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2"},"guid":"bfdfe7dc352907fc980b868725387e98d9973325385d84e0e77b85c54100d070","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9896631f0702bcaa9fd24776311b2cd48b","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e98ce9c972125fa8e60135d49830ab80fb9","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9896631f0702bcaa9fd24776311b2cd48b","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e9856cf668712b9a03308963239dfa31677","name":"Release"}],"buildPhases":[{"alwaysOutOfDate":"false","alwaysRunForInstallHdrs":"false","buildFiles":[],"emitEnvironment":"false","guid":"bfdfe7dc352907fc980b868725387e9875f5f7294d970da29740ea9d892ff270","inputFileListPaths":["${PODS_ROOT}/Target Support Files/GoogleNavigation/GoogleNavigation-xcframeworks-input-files.xcfilelist"],"inputFilePaths":[],"name":"[CP] Copy XCFrameworks","originalObjectID":"181935D79354233793EF8014128D7B3E","outputFileListPaths":["${PODS_ROOT}/Target Support Files/GoogleNavigation/GoogleNavigation-xcframeworks-output-files.xcfilelist"],"outputFilePaths":[],"sandboxingOverride":"basedOnBuildSetting","scriptContents":"\"${PODS_ROOT}/Target Support Files/GoogleNavigation/GoogleNavigation-xcframeworks.sh\"\n","shellPath":"/bin/sh","type":"com.apple.buildphase.shell-script"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e9818352c54edac2258b91768852065ce5e","name":"GoogleMaps"},{"guid":"bfdfe7dc352907fc980b868725387e9840209c7fe78cadee2612d71e96cd4bdb","name":"GoogleNavigation-GoogleNavigationResources"}],"guid":"bfdfe7dc352907fc980b868725387e98282d9246524ea316059ab11846dac3ef","name":"GoogleNavigation","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0}],"type":"aggregate"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=a78293cb463458b5b78ca80f9bbe12fb-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=a78293cb463458b5b78ca80f9bbe12fb-json new file mode 100644 index 0000000..130cacc --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=a78293cb463458b5b78ca80f9bbe12fb-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984bc9977ccf8ea20d6d7539e56853e7a7","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_secure_storage","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e989ab3841d28ec5dc90b678081bf09108e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987ba9ebb08e6d0c50675558e6cd7e065a","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_secure_storage","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d38c1e976fc7da67866ec3fcfa333311","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987ba9ebb08e6d0c50675558e6cd7e065a","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_secure_storage","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c4a2379731c5216c2d2089adf584eeee","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9872fce04d6b49a0cabde6c94673d86883","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e989dcf0d33a47d0459c2fe70f7c8f5556e","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98d3e6170d25aa51f31d45d6eb8716104d","guid":"bfdfe7dc352907fc980b868725387e98d4f9254b31fc7fa8f7875fceee623814"}],"guid":"bfdfe7dc352907fc980b868725387e981d61c12e0ee3551b2bb5e6eaddede74f","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98a0220561f537715e864e45aed9ae8b8b","name":"flutter_secure_storage-flutter_secure_storage","productReference":{"guid":"bfdfe7dc352907fc980b868725387e989548ba3fd96e73f640dce7442408204f","name":"flutter_secure_storage.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=aca65a4ac792bfcb49344de32f1c3ca3-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=aca65a4ac792bfcb49344de32f1c3ca3-json new file mode 100644 index 0000000..5ac484e --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=aca65a4ac792bfcb49344de32f1c3ca3-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98186e982df37db89fe49bcda3a9cd9b73","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"url_launcher_ios","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"url_launcher_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e989e8a5e6f3fd69e0c38b557413c823639","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98ace0c0440e4b53ba3de29900f7d4bb7f","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"url_launcher_ios","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"url_launcher_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9840fb88b5d1dc4e5df4485e732c56885d","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98ace0c0440e4b53ba3de29900f7d4bb7f","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"url_launcher_ios","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"url_launcher_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e986a11246f198fb04d6c8f397cabfd38d8","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98abaa9b812aad944508dbf05eefa752b5","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e984caa2f1d777ea389c7ee7db8858444e5","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98746b0938be2ee934824b330d686857af","guid":"bfdfe7dc352907fc980b868725387e98f6e1a6b3a4d617970ced59dd8a8b6d47"}],"guid":"bfdfe7dc352907fc980b868725387e982146574225d6b9a7ff59315708878b61","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9891b3b8cc56823cdea4b418e009a423b2","name":"url_launcher_ios-url_launcher_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9827df8da513ac7d6928fc311b53a7155d","name":"url_launcher_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=c732ba7bc93e158af8e0366a49f8a690-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=c732ba7bc93e158af8e0366a49f8a690-json new file mode 100644 index 0000000..b7a0834 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=c732ba7bc93e158af8e0366a49f8a690-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98144cd18850e477837c238075d5256ffe","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e981c6caf79748e272e3857c2ceb80b32ad","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e981b663a2c82f0220040296818ba53477e","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e985f57d96bb01da9e18579fab6262467eb","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98965b92d39d30a7872295adc2841cd1b1","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e987fda5bb1871140858c4dbfec236c0e52","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e5e8bcdff29e5f8321be18f7989b4bc7","guid":"bfdfe7dc352907fc980b868725387e98ca9af5e2c54f437f9ebb0c203883ccae","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e986e6b8bd91d07f2fb082ccd84c7dcacb1","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98022654f1ff78dd844d694dba2439dab2","guid":"bfdfe7dc352907fc980b868725387e9881f185e1672aa83b98d6e30b47f8f468"}],"guid":"bfdfe7dc352907fc980b868725387e98de09b1176c796343f1f9bcd422c73402","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98e7ac2b91ee49764a75561cf994247683"}],"guid":"bfdfe7dc352907fc980b868725387e983bb5c38e7891bdb262f8e050f7d97030","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e987fddc24c35656402341de288e0688015","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e98312b4bc59bbbe2c06c205bf4da6737f5","name":"Pods-Runner"}],"guid":"bfdfe7dc352907fc980b868725387e98483832d3c820398e9d40e1a6904b03fe","name":"Pods-RunnerTests","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e984f9f39caeddf64cc331db2b69d62aa63","name":"Pods_RunnerTests.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d1ff5bc788ee416133388e9ae76c0c7c-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d1ff5bc788ee416133388e9ae76c0c7c-json new file mode 100644 index 0000000..74d5ca3 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d1ff5bc788ee416133388e9ae76c0c7c-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9840ae838f8ac69bc67263efbe8dc323d7","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleMaps","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleMaps","INFOPLIST_FILE":"Target Support Files/GoogleMaps/ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GoogleMapsResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e983191cda542837fa6770197504daef473","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989bf599cd5d4dd79de867d43540047de6","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleMaps","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleMaps","INFOPLIST_FILE":"Target Support Files/GoogleMaps/ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","PRODUCT_NAME":"GoogleMapsResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e989d7a2fe6a6e4ee7bcdcad21a77de035e","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989bf599cd5d4dd79de867d43540047de6","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleMaps","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleMaps","INFOPLIST_FILE":"Target Support Files/GoogleMaps/ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","PRODUCT_NAME":"GoogleMapsResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9849ea1eac4d4a03ad836d326f824a2188","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98d9a6fbff63b4b45308ad1df71da4d517","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e980332ecdb9230e6c20a735a5b4c6c417b","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98408aeea65f8576fdbf766a4c1aafc7f3","guid":"bfdfe7dc352907fc980b868725387e98b4e7bb0451966e85948d13349e7d172a"}],"guid":"bfdfe7dc352907fc980b868725387e985422bd043ecb80a62697fe2c7436a8fe","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9877354dc0c1379e634078de2da2deba6b","name":"GoogleMaps-GoogleMapsResources","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98e1226e3627f386c3cc556b927e8c995d","name":"GoogleMapsResources.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d4c2dfe1c82b9f1fe908298a018f3d27-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d4c2dfe1c82b9f1fe908298a018f3d27-json new file mode 100644 index 0000000..1d87d6a --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d4c2dfe1c82b9f1fe908298a018f3d27-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9883fd68a4145abded79f7758856e20d05","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_appauth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_appauth","INFOPLIST_FILE":"Target Support Files/flutter_appauth/ResourceBundle-flutter_appauth_privacy-flutter_appauth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"flutter_appauth_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98712be270f11869f9b381a11c7fbc218c","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a0363b33b26a3f20bb91d324a46ad52b","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_appauth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_appauth","INFOPLIST_FILE":"Target Support Files/flutter_appauth/ResourceBundle-flutter_appauth_privacy-flutter_appauth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"flutter_appauth_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a57417b5a0b537217b8dbe5ff734b33d","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a0363b33b26a3f20bb91d324a46ad52b","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_appauth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_appauth","INFOPLIST_FILE":"Target Support Files/flutter_appauth/ResourceBundle-flutter_appauth_privacy-flutter_appauth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"flutter_appauth_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e981e1b1c740d78f941c6f1c7eccfd76b80","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e985f15189a3c329e6a4f4dda3f88970825","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98476f591635cec8be63ece42c91ac4c5b","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98ff28582d663ab87fc368c4e58763f76d","guid":"bfdfe7dc352907fc980b868725387e981eb65d04a62cc5ee4b5b0c5b3c7e475d"}],"guid":"bfdfe7dc352907fc980b868725387e980b635078f9eecc2f745b45194b3c499c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9838116aba79bee5cd919637253bcf2ecc","name":"flutter_appauth-flutter_appauth_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e982460b3be5f4208d02013fc970dac2dce","name":"flutter_appauth_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d4e63875c9ea3c3913c8d1a9d7061699-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d4e63875c9ea3c3913c8d1a9d7061699-json new file mode 100644 index 0000000..4d78aef --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d4e63875c9ea3c3913c8d1a9d7061699-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f1732f50402cdd4e9a853378f00de46e","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"shared_preferences_foundation","PRODUCT_NAME":"shared_preferences_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98070d049bc9f33d4eedf57f66e50812a1","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98039c35627e5877b409f4593c36b6bc93","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"shared_preferences_foundation","PRODUCT_NAME":"shared_preferences_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9844e5c4b35c406f6d23ac5779a73cf27a","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98039c35627e5877b409f4593c36b6bc93","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","MODULEMAP_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"shared_preferences_foundation","PRODUCT_NAME":"shared_preferences_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e983b7b533a49d9c3c86d9b054aeecbd3b9","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98f5931a0aa7c99539733254e54e84315c","guid":"bfdfe7dc352907fc980b868725387e98e82259888cd400660e6ae15b115eb233","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e9845bc282ec8aa7540f3a569c2631d21d5","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e988b3f495c356838466ddb3010f4d2acaf","guid":"bfdfe7dc352907fc980b868725387e98c8bb57268ba36458b2b7c13e436bb664"},{"fileReference":"bfdfe7dc352907fc980b868725387e98754d8202a6b99765f4c3d0f5d893e3ac","guid":"bfdfe7dc352907fc980b868725387e98489a95f2019f3ec6e0acd5ba6de8991a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98181d528f5b5e81c144200514bb34843d","guid":"bfdfe7dc352907fc980b868725387e98278e895b34fbff026d2811422a08be88"}],"guid":"bfdfe7dc352907fc980b868725387e98f14b5d6b6d6b0c465e2f1e0eaa6bc1cd","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98475ba5d87573359032e9b06fd466a003"}],"guid":"bfdfe7dc352907fc980b868725387e9859badffc37928e123e98be61f8d11d71","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e9872e4e537a8c9a8da179493daa4c54b77","targetReference":"bfdfe7dc352907fc980b868725387e98e0be3b0d5ad56f1985578b1f97431765"}],"guid":"bfdfe7dc352907fc980b868725387e9876fd72010a5b056ae41fa1936cd39334","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e98e0be3b0d5ad56f1985578b1f97431765","name":"shared_preferences_foundation-shared_preferences_foundation_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e9828cab1f188854e0a973e6ff6905c5ffe","name":"shared_preferences_foundation","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9815af7ba71ce93f789a463577fc360420","name":"shared_preferences_foundation.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d6a81f9e86e100e257e8d3bc6e741a66-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d6a81f9e86e100e257e8d3bc6e741a66-json new file mode 100644 index 0000000..c64fa2f --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=d6a81f9e86e100e257e8d3bc6e741a66-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1b134ad118e25bf8a1dc2b9ce79ad5d","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleNavigation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleNavigation","INFOPLIST_FILE":"Target Support Files/GoogleNavigation/ResourceBundle-GoogleNavigationResources-GoogleNavigation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GoogleNavigationResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e981a62fab92f772ff9814442e829af40d3","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9896631f0702bcaa9fd24776311b2cd48b","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleNavigation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleNavigation","INFOPLIST_FILE":"Target Support Files/GoogleNavigation/ResourceBundle-GoogleNavigationResources-GoogleNavigation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","PRODUCT_NAME":"GoogleNavigationResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98977553104d36f51b343d85428e46059a","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9896631f0702bcaa9fd24776311b2cd48b","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleNavigation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleNavigation","INFOPLIST_FILE":"Target Support Files/GoogleNavigation/ResourceBundle-GoogleNavigationResources-GoogleNavigation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"16.0","PRODUCT_NAME":"GoogleNavigationResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e983ae1d6699688152101d7a302bec258c7","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e980fd5e3e3d2dfe86aee122db8e2bcc80f","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98e210593fc985afc0fb568c7ea1c7b063","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98313329d51e705fb6ce392e38d83a004c","guid":"bfdfe7dc352907fc980b868725387e98a81f8c119c50ffaca3bee7481e9584bb"}],"guid":"bfdfe7dc352907fc980b868725387e98a8dca316045dac76992a961badbc0665","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9840209c7fe78cadee2612d71e96cd4bdb","name":"GoogleNavigation-GoogleNavigationResources","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9896ff2333d2f65de7e44bf6896a8741c5","name":"GoogleNavigationResources.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=dbe22f08507ba422117e4616d702a70b-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=dbe22f08507ba422117e4616d702a70b-json new file mode 100644 index 0000000..cf425a6 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=dbe22f08507ba422117e4616d702a70b-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a553cb6838f3dba8465d8e4475e67146","buildSettings":{"CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","GCC_PREFIX_HEADER":"Target Support Files/AppAuth/AppAuth-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/AppAuth/AppAuth-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"9.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/AppAuth/AppAuth.modulemap","ONLY_ACTIVE_ARCH":"NO","PRODUCT_MODULE_NAME":"AppAuth","PRODUCT_NAME":"AppAuth","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9838f359a914480866ab600caf00488685","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98853e49f132a195ea0f4a3955deb01309","buildSettings":{"CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","GCC_PREFIX_HEADER":"Target Support Files/AppAuth/AppAuth-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/AppAuth/AppAuth-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"9.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/AppAuth/AppAuth.modulemap","PRODUCT_MODULE_NAME":"AppAuth","PRODUCT_NAME":"AppAuth","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e989edf99ea2b4edea0486b888ea574a8ea","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98853e49f132a195ea0f4a3955deb01309","buildSettings":{"CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","GCC_PREFIX_HEADER":"Target Support Files/AppAuth/AppAuth-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/AppAuth/AppAuth-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"9.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/AppAuth/AppAuth.modulemap","PRODUCT_MODULE_NAME":"AppAuth","PRODUCT_NAME":"AppAuth","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e984e780033b66f90c8eafb514167bc3655","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98b3716ecb0c024d9ef18f68b69c8158a2","guid":"bfdfe7dc352907fc980b868725387e9835e2a4918aa87499eafe8d2c318d6057","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d03e05f6007ca91f4e233e0c63c5d24e","guid":"bfdfe7dc352907fc980b868725387e98b593e36ce49085fc256381c249976e89","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b44ab8f07097b1290d71e4b05f238c1b","guid":"bfdfe7dc352907fc980b868725387e989bf70896a7d952854a45cb4218f76b4d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98dd7b8531a171d2f5adab41153aec91c4","guid":"bfdfe7dc352907fc980b868725387e98346caaed2ae26f08752446e9256c142f","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b98e26e2d61277cc3ee4e995442136a6","guid":"bfdfe7dc352907fc980b868725387e9809dc64621eb0d1bb4eaa9f784ea2628b","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f36fac36aa8d4d22d10b7a3c593562a6","guid":"bfdfe7dc352907fc980b868725387e9865c03dfe610b76d73fa2f59e43a018b0","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9823384be1415a7877e48f5171447299f8","guid":"bfdfe7dc352907fc980b868725387e9884ceb80c54ea87aff5dbd066062b4a71","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a7a84158fceabfeff432c43b553309b8","guid":"bfdfe7dc352907fc980b868725387e98fe627dd3f63d4e0a7df20f2b3672ea73","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98509446b0072e5954271274635428979c","guid":"bfdfe7dc352907fc980b868725387e9838ccef920063996c68f88bfe3a18bbb8","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98126da7d97c16c8dfda0ed12c6da55bb9","guid":"bfdfe7dc352907fc980b868725387e98c80aa6fff50b0a7c9b7b91eceb499214","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f1216961eddd9a47220e6ca107aa9828","guid":"bfdfe7dc352907fc980b868725387e98e453606ae485068ac9b5c3d7e2e73156","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98754ee7df1fb115ce62254cc6b8423227","guid":"bfdfe7dc352907fc980b868725387e987819d1a19f43324b45f2fa24bc0c1910","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e984806d0eb6a5cf07885fbcd74930b9aff","guid":"bfdfe7dc352907fc980b868725387e98eba5b70564dbc01e034308e2b60099c4","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f435644cbfd037d07900fa24e714e8b1","guid":"bfdfe7dc352907fc980b868725387e980cb497c45839a0bcfef3ebb8f672ffe7","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98fe717c0175d2aad33399b64dc3fdcb5e","guid":"bfdfe7dc352907fc980b868725387e98af75b105fee013ed545355245b5e69b0","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98501868da06422c48c5d76ec8852a06be","guid":"bfdfe7dc352907fc980b868725387e981885ed15e4563f6f473659f9ecfa740e","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e989cc72e4748fc5a268f11a21df36ac473","guid":"bfdfe7dc352907fc980b868725387e986d0f9df46bf7c4def05e4fcf6d06f424","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e987e5a3172d96391a14e8d3b509e7c9612","guid":"bfdfe7dc352907fc980b868725387e98130c670a378f091964c9a99de0fe5b7d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98198d96dc450c1cc36c8ca6eeb3c414b3","guid":"bfdfe7dc352907fc980b868725387e98f87fbe91077e9c74fe7865badd07a31c","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e982ed579646909ae779df947ba2cee76ec","guid":"bfdfe7dc352907fc980b868725387e98cc1d4083e52518b1cc5752910682434f","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9839e2d99fc63e972824102808bef26d6e","guid":"bfdfe7dc352907fc980b868725387e989d9b17b476cda6eba621548f1a6af13f","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9827bd915abfeec76a3ceb856e76d59341","guid":"bfdfe7dc352907fc980b868725387e9824afb5e9dba236abb010b79abff0f867","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986e085cdccbcda2f40a2f1fcf6e3a4b71","guid":"bfdfe7dc352907fc980b868725387e98b992e406c3077a33f1fce275d2065ba5","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98badd68b44c91ce69752bce342a87fc90","guid":"bfdfe7dc352907fc980b868725387e988f5f902685df12af1171cd61797d96db","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98adfc69b9d4843f4ef581830ea72d9fe1","guid":"bfdfe7dc352907fc980b868725387e982b7492c45573bbea9cdcbecc7cf87842","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9870f7acfd872e26a78f6a17e6352a3676","guid":"bfdfe7dc352907fc980b868725387e98b672363655c69ef93ba2a9c9be5f895e","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e989cc8fa1f99b2cf43a8cd6e5a77f73b8e","guid":"bfdfe7dc352907fc980b868725387e986e689533f0a3a860cf0bce1a64e86052","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98dcea2e8ed5715b7048783867c2fc66ea","guid":"bfdfe7dc352907fc980b868725387e9825d3dbd3ac30cbdeab219a105a3d456a","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e980c8e2a94646f5d0e94b18eb01258da93","guid":"bfdfe7dc352907fc980b868725387e98fb9099af59321359500579ff7b37dd42","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f21f370e690c1bfbeaae52cf7518a6de","guid":"bfdfe7dc352907fc980b868725387e98da97860b81a183455b3334b97ffc71ac","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ca1ee19fb6041bf4a01dae283bfe0784","guid":"bfdfe7dc352907fc980b868725387e98d1367c09cfad97cb5b4021856409c6ee","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e629e01764f3525f59f0fcff8402e0ff","guid":"bfdfe7dc352907fc980b868725387e9803f29ec614f88bd7f02db74712c55ce2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e984d8bc0f8e0f4e8b32cad41baa988636d","guid":"bfdfe7dc352907fc980b868725387e98a3932466b9f0de0b5334b5f074680444","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98cc393b3a600a426bbf6f069d0b247a2f","guid":"bfdfe7dc352907fc980b868725387e9884d19e8d0f214dae2fb0d1d0a52ceb20","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98144b68743adf95cb5929315d5bbe4176","guid":"bfdfe7dc352907fc980b868725387e98b4da687242434e8595f1ff648e8c4a8b","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98176a6abe9191f94b0bc81561ba7c38ac","guid":"bfdfe7dc352907fc980b868725387e98b700bfed93d1ff2f36b8ef73283ae720","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9803746abc99c3b69d5d8f4c8e7014ecfd","guid":"bfdfe7dc352907fc980b868725387e9888d278f864b10c77df0d7f868dd1f793","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d1f276d52aa9d008ffdbbe5e09e7b888","guid":"bfdfe7dc352907fc980b868725387e98a4efdd26a94a129105398d3e5f507af3","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e9899425aa12cff2d7b9a11fdeb2197f21d","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e983477a6fdc4e2b1bbe9f97774e92aa663","guid":"bfdfe7dc352907fc980b868725387e984be062ecc4bbee3c433adf451ce52411"},{"fileReference":"bfdfe7dc352907fc980b868725387e980eb32d1597aa8f3268d989adb090f998","guid":"bfdfe7dc352907fc980b868725387e987cba445125a90e17740ae3259421d1de"},{"fileReference":"bfdfe7dc352907fc980b868725387e985e6efff7cfb8c43fa4154d8f24cbe296","guid":"bfdfe7dc352907fc980b868725387e986022d06332a4a5d6714503199d9616b3"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b1ff9cae67d165642811ca09a9dc3382","guid":"bfdfe7dc352907fc980b868725387e980ffbeed29b446138c39f2d12ae0bacb6"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a2a2da1ddfaea3b65af8e838eda1801b","guid":"bfdfe7dc352907fc980b868725387e984c3c7b0f8a8dbf9df2b43fc36b4b27b7"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e09acb3899d8490f056a90449599df91","guid":"bfdfe7dc352907fc980b868725387e98739a05f2a9c75b343f5d5fda34b3119f"},{"fileReference":"bfdfe7dc352907fc980b868725387e986097ce143d210733d4cd5a6931e9945b","guid":"bfdfe7dc352907fc980b868725387e98d91d0b79211b92abfc44b031ddc05ea9"},{"fileReference":"bfdfe7dc352907fc980b868725387e980db1d31f93033800523708754dec96f5","guid":"bfdfe7dc352907fc980b868725387e988e10bf0f1cd908bde9a7973a46787d59"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f4d5d1df8778a6ee4a2d7e75ce26f5e2","guid":"bfdfe7dc352907fc980b868725387e982618ebbfb872702353238696bb964a5f"},{"fileReference":"bfdfe7dc352907fc980b868725387e989635153433fecd8f16172bc78096d442","guid":"bfdfe7dc352907fc980b868725387e9856fbf9d18faeac64b3c2ef26ff2593d2"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f431c2de6f27a805a900b01836c65b99","guid":"bfdfe7dc352907fc980b868725387e98e45ddc5562518fdb111f9039b9c6ab78"},{"fileReference":"bfdfe7dc352907fc980b868725387e9822ebcc5ae1bc197d0011858201338ae8","guid":"bfdfe7dc352907fc980b868725387e980c1e15e7d474b08633f2c62c1422b13b"},{"fileReference":"bfdfe7dc352907fc980b868725387e981938333eaaabc912e9a23e645df1a738","guid":"bfdfe7dc352907fc980b868725387e9844d621a6eec6be92fbca590a1cc3f158"},{"fileReference":"bfdfe7dc352907fc980b868725387e981508f54d76dcf1db173212cb0be8edb3","guid":"bfdfe7dc352907fc980b868725387e98d8051382ae86a58b0e7c039d3a514f74"},{"fileReference":"bfdfe7dc352907fc980b868725387e9810a662b672b054d3256b0d25ff18f4c1","guid":"bfdfe7dc352907fc980b868725387e98ac80c9ce6afe2e551f86b440c9dbce93"},{"fileReference":"bfdfe7dc352907fc980b868725387e9848e1f170ab66d50e1177aa153e65dfd9","guid":"bfdfe7dc352907fc980b868725387e98d8f6ad70640c9359700dbae63aa10bb2"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d7f3818dfcddf385c62b72dee800aae4","guid":"bfdfe7dc352907fc980b868725387e987d16a421ae182f9a38c0084085e9f787"},{"fileReference":"bfdfe7dc352907fc980b868725387e9805cee9565d88ef60d792792647d7ad63","guid":"bfdfe7dc352907fc980b868725387e98e197d434ddf398a4700a0843471f235a"},{"fileReference":"bfdfe7dc352907fc980b868725387e986a76c306bdab80419341ecb125e957f1","guid":"bfdfe7dc352907fc980b868725387e98161e59725e2efbdd4f661863d905ed4e"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d4e16c7688fd3c846322c4072de3c81c","guid":"bfdfe7dc352907fc980b868725387e98d51feb4cfec2ba0accac4dc05fa4583f"},{"fileReference":"bfdfe7dc352907fc980b868725387e9829414216c52a549921ead2e867b6d838","guid":"bfdfe7dc352907fc980b868725387e983da04708745588c8578e1c4335a9199f"},{"fileReference":"bfdfe7dc352907fc980b868725387e98cb5103ee41c24772ab0ceb64e1fa9c85","guid":"bfdfe7dc352907fc980b868725387e98f37aa874181d44c0d99e9ef33d3e0451"},{"fileReference":"bfdfe7dc352907fc980b868725387e980e944a5b584e70d7f48a0577717b1493","guid":"bfdfe7dc352907fc980b868725387e9843c24117a75a316c2e1efae20106dfa8"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c488d7d4585b8d560dbf27360a726b79","guid":"bfdfe7dc352907fc980b868725387e98bc7567ea31a2158840ca1dcc69f2e889"},{"fileReference":"bfdfe7dc352907fc980b868725387e98886b5a61d4c78a04b0da32e20704f64e","guid":"bfdfe7dc352907fc980b868725387e98283a6d0f0fc934c6fed39d296504a7a1"},{"fileReference":"bfdfe7dc352907fc980b868725387e983ec0380373c891bc5cdfef8e4728b5dc","guid":"bfdfe7dc352907fc980b868725387e989ef33ed7291b0a72a340fcfbd007790b"},{"fileReference":"bfdfe7dc352907fc980b868725387e981d9e89f062c57bb801de45c33e1b3b48","guid":"bfdfe7dc352907fc980b868725387e98a2725e5f07919e33a7cbfa9b8aa1e7e0"},{"fileReference":"bfdfe7dc352907fc980b868725387e9801af4615228758e54683080188b5f967","guid":"bfdfe7dc352907fc980b868725387e9875a71aeffb50242e060ca59b8648af50"},{"fileReference":"bfdfe7dc352907fc980b868725387e98bfcce6824065d509c94c57f4f86e3906","guid":"bfdfe7dc352907fc980b868725387e98ffe83a3be1ca2c6073058a8f9fad2ffa"},{"fileReference":"bfdfe7dc352907fc980b868725387e98947fb2361c0d4368fd904380dd1fe9e8","guid":"bfdfe7dc352907fc980b868725387e982321fb9f249b015bccda654afd3e4bd0"}],"guid":"bfdfe7dc352907fc980b868725387e9881a6f91f9c4a78256c07328a94010f1b","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98c5ee603f3d0306d4328b6ce80791a4c9"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a9a6af648894e46aaf01bd3988458b40","guid":"bfdfe7dc352907fc980b868725387e98de3535e725d5f81434d8d4dfa48ea4d0"}],"guid":"bfdfe7dc352907fc980b868725387e9824a834500be158586a81b15610dcdb61","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98d8db5a2f3c02b2760bde1e0f5901c864","targetReference":"bfdfe7dc352907fc980b868725387e98410c96b4e26fc36411e63b84c3491605"}],"guid":"bfdfe7dc352907fc980b868725387e98071d577239764044d9469461f6f20f20","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e98410c96b4e26fc36411e63b84c3491605","name":"AppAuth-AppAuthCore_Privacy"}],"guid":"bfdfe7dc352907fc980b868725387e98758cc842172da540ffb591e63e38dc1e","name":"AppAuth","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9831bed8c3b9a4033f1cf45ed4e397e6e7","name":"AppAuth.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=dd8486a3f0c065c51d9022853b270f61-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=dd8486a3f0c065c51d9022853b270f61-json new file mode 100644 index 0000000..a2e679e --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=dd8486a3f0c065c51d9022853b270f61-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a69fd7bcabc0a20fae04fd73fa52549d","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98260207aa3e1df35e23e69c1a47426154","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9830121d4cd39b9b5353e3bd656ff5f0e5","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98ece2bbc522c1379b0b2a178c66361143","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9830121d4cd39b9b5353e3bd656ff5f0e5","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a5f6daf72705fb5072948ac27596dc7d","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e985dd996df7a2e473a6991f4f302e8eabf","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98e10df81fc7f47e627440f5852488689e","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98dffa8ac546e296000112a65a901e4106","guid":"bfdfe7dc352907fc980b868725387e988add1c9900ab74ace4b8472d695304bb"}],"guid":"bfdfe7dc352907fc980b868725387e98e2b3a30f9688768983820656f464ef51","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5","name":"path_provider_foundation-path_provider_foundation_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e986e649604f74c414a7c2dbe5ef4cc4e75","name":"path_provider_foundation_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f1d5c36cb9851cf3da3fce69122874c2-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f1d5c36cb9851cf3da3fce69122874c2-json new file mode 100644 index 0000000..c962019 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f1d5c36cb9851cf3da3fce69122874c2-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9840ae838f8ac69bc67263efbe8dc323d7","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","ONLY_ACTIVE_ARCH":"NO","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2"},"guid":"bfdfe7dc352907fc980b868725387e98644b3fe27382cec8a7bd8d5de6d3bf23","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989bf599cd5d4dd79de867d43540047de6","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e9873ec9b10f7565a6466b1212456cdaadb","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989bf599cd5d4dd79de867d43540047de6","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"16.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e986321e0a9b9c9f4570e60c08f0377621a","name":"Release"}],"buildPhases":[{"alwaysOutOfDate":"false","alwaysRunForInstallHdrs":"false","buildFiles":[],"emitEnvironment":"false","guid":"bfdfe7dc352907fc980b868725387e98b21ffc68aa281b044f48f05e9d22d849","inputFileListPaths":["${PODS_ROOT}/Target Support Files/GoogleMaps/GoogleMaps-xcframeworks-input-files.xcfilelist"],"inputFilePaths":[],"name":"[CP] Copy XCFrameworks","originalObjectID":"B4014D7E512183EABBE5F8E70545CAF8","outputFileListPaths":["${PODS_ROOT}/Target Support Files/GoogleMaps/GoogleMaps-xcframeworks-output-files.xcfilelist"],"outputFilePaths":[],"sandboxingOverride":"basedOnBuildSetting","scriptContents":"\"${PODS_ROOT}/Target Support Files/GoogleMaps/GoogleMaps-xcframeworks.sh\"\n","shellPath":"/bin/sh","type":"com.apple.buildphase.shell-script"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e9877354dc0c1379e634078de2da2deba6b","name":"GoogleMaps-GoogleMapsResources"}],"guid":"bfdfe7dc352907fc980b868725387e9818352c54edac2258b91768852065ce5e","name":"GoogleMaps","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0}],"type":"aggregate"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f32ba23750f06681389652c970c295df-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f32ba23750f06681389652c970c295df-json new file mode 100644 index 0000000..c9f2408 --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f32ba23750f06681389652c970c295df-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9883fd68a4145abded79f7758856e20d05","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/flutter_appauth/flutter_appauth-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/flutter_appauth/flutter_appauth-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/flutter_appauth/flutter_appauth.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"flutter_appauth","PRODUCT_NAME":"flutter_appauth","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98fd088d10560da56545b7e70d958f379e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a0363b33b26a3f20bb91d324a46ad52b","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/flutter_appauth/flutter_appauth-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/flutter_appauth/flutter_appauth-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/flutter_appauth/flutter_appauth.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"flutter_appauth","PRODUCT_NAME":"flutter_appauth","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98bde5db74f22e5b68820e2b68aeadf36b","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a0363b33b26a3f20bb91d324a46ad52b","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/mathias/Documents/workspaces/libraries/flutter/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/flutter_appauth/flutter_appauth-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/flutter_appauth/flutter_appauth-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/flutter_appauth/flutter_appauth.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"flutter_appauth","PRODUCT_NAME":"flutter_appauth","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98216bacf04046fa3bf0bb9a3199a6aef9","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98c0c1d26819b1b6ff754a11e0bb60a74e","guid":"bfdfe7dc352907fc980b868725387e98b9da9f63122b140e99f9ddbfe72c8e9c","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c85f472d48a5c63e9f6512a63f9ca1ce","guid":"bfdfe7dc352907fc980b868725387e98de82553280514dbc2fb1fd8acb2ec884","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986182dcc1d19eb9da615753adbce77fb6","guid":"bfdfe7dc352907fc980b868725387e985ecf875ef12898eadfed7b78eee565f6","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e3d99addc5d3d220aa59609b35eb2a06","guid":"bfdfe7dc352907fc980b868725387e9841b4aec16a827e9624df94abde4531fc","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98dd963aefd0a76404ae6408beb47900b1","guid":"bfdfe7dc352907fc980b868725387e9817aa6d7c738548ecf95bbdae9d7fd6aa","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98001b7d8aeae5c42dfa65a920d9fbd00a","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989fe16c66742c8a32c7fcbfe8cfbede39","guid":"bfdfe7dc352907fc980b868725387e98ff722b9328e46d3a4c2617515bfac769"},{"fileReference":"bfdfe7dc352907fc980b868725387e98274aaa97a263bed6ed5e8d93eb3a75a7","guid":"bfdfe7dc352907fc980b868725387e98adf593db4551b7ae53d4b71ec317c2d9"},{"fileReference":"bfdfe7dc352907fc980b868725387e982b3138ccf56a3651fe8365719775d2d8","guid":"bfdfe7dc352907fc980b868725387e980c49431d33ebd737dcd3133df6ee29a9"},{"fileReference":"bfdfe7dc352907fc980b868725387e983ef89109ee2bdbcc73210f1e06d0f741","guid":"bfdfe7dc352907fc980b868725387e9865ca9c7ebffc02426b47e43014ff60ae"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a990ac21cca9859ea9b09596c2ae4602","guid":"bfdfe7dc352907fc980b868725387e98ef56251417c6b24240222bb4842d6193"}],"guid":"bfdfe7dc352907fc980b868725387e98800a959525f02856d9cf8540818d943f","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f4975b040bb7264cb91a13e86e408c2","guid":"bfdfe7dc352907fc980b868725387e98e571fe7628fd04fc4507bf05845e6f10"}],"guid":"bfdfe7dc352907fc980b868725387e98045ac9d0501ae8f01bf4655678413713","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98b85ddcc0b6222bb09ff64a05c98b941a","targetReference":"bfdfe7dc352907fc980b868725387e9838116aba79bee5cd919637253bcf2ecc"}],"guid":"bfdfe7dc352907fc980b868725387e982b3cd41275c344e5c724514001b20cf2","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e98758cc842172da540ffb591e63e38dc1e","name":"AppAuth"},{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e9838116aba79bee5cd919637253bcf2ecc","name":"flutter_appauth-flutter_appauth_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e98b70a033634f3eb6130de4681c3abbaf4","name":"flutter_appauth","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9838a1ce142207244a05f3b13fb21aa5e1","name":"flutter_appauth.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f5387cf66e419a71dc456a53cc623eb0-json b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f5387cf66e419a71dc456a53cc623eb0-json new file mode 100644 index 0000000..986e45a --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/target/TARGET@v11_hash=f5387cf66e419a71dc456a53cc623eb0-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98067c4bb9648cff0393e17526af5710e3","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9811ac729da10988d7de6210aed950376d","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982e9c5f9312975795324f63668491a40d","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e980a91a2c2323ca1447f8abf46d4db3f39","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982e9c5f9312975795324f63668491a40d","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"13.0","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98b2a9180fa7a71161ad43491be2d22329","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9881b7cc6c2b8c14363b0c2c16ccef997e","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9836804edc69d47dd23fabb059f1fab8d5","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9869631eb1c001ffcff7f8e0c26a0c3aca","guid":"bfdfe7dc352907fc980b868725387e98bfd55e31574d784429a73f7eb3d39a95"}],"guid":"bfdfe7dc352907fc980b868725387e9865a7dd558debfaa9b2e221c59f214e73","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d","name":"image_picker_ios-image_picker_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98cba567c8a049008de84f093e54e3191c","name":"image_picker_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/ios/build/ios/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=(null)_subobjects=b4141484b6b50c6cc6ea5b33a3c5f75b-json b/ios/build/ios/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=(null)_subobjects=b4141484b6b50c6cc6ea5b33a3c5f75b-json new file mode 100644 index 0000000..82b9e2d --- /dev/null +++ b/ios/build/ios/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=(null)_subobjects=b4141484b6b50c6cc6ea5b33a3c5f75b-json @@ -0,0 +1 @@ +{"guid":"dc4b70c03e8043e50e38f2068887b1d4","name":"Pods","path":"/Users/mathias/Documents/workspaces/plan-b/ionic-planb-logistic-app-flutter/ios/Pods/Pods.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=9e2fb057732b89c3647d8f55a7747969_hash=bfdfe7dc352907fc980b868725387e98plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1"]} \ No newline at end of file diff --git a/lib/api/client.dart b/lib/api/client.dart index 4904489..b0a5a63 100644 --- a/lib/api/client.dart +++ b/lib/api/client.dart @@ -1,8 +1,10 @@ import 'dart:async'; import 'dart:convert'; import 'package:http/http.dart' as http; +import 'package:http_interceptor/http_interceptor.dart'; import 'types.dart'; import 'openapi_config.dart'; +import '../utils/logging_interceptor.dart'; class CqrsApiClient { final ApiClientConfig config; @@ -12,7 +14,9 @@ class CqrsApiClient { required this.config, http.Client? httpClient, }) { - _httpClient = httpClient ?? http.Client(); + _httpClient = httpClient ?? InterceptedClient.build( + interceptors: [LoggingInterceptor()], + ); } String get baseUrl => config.baseUrl; diff --git a/lib/components/delivery_map.dart b/lib/components/delivery_map.dart new file mode 100644 index 0000000..5052c94 --- /dev/null +++ b/lib/components/delivery_map.dart @@ -0,0 +1,230 @@ +import 'package:flutter/material.dart'; +import 'package:google_navigation_flutter/google_navigation_flutter.dart'; +import '../models/delivery.dart'; + +class DeliveryMap extends StatefulWidget { + final List deliveries; + final Delivery? selectedDelivery; + final ValueChanged? onDeliverySelected; + + const DeliveryMap({ + super.key, + required this.deliveries, + this.selectedDelivery, + this.onDeliverySelected, + }); + + @override + State createState() => _DeliveryMapState(); +} + +class _DeliveryMapState extends State { + GoogleNavigationViewController? _navigationController; + bool _isNavigating = false; + LatLng? _destinationLocation; + + @override + void initState() { + super.initState(); + _initializeNavigation(); + } + + Future _initializeNavigation() async { + try { + debugPrint('🗺️ Starting navigation initialization'); + // Check if terms and conditions need to be shown + final termsAccepted = await GoogleMapsNavigator.areTermsAccepted(); + debugPrint('🗺️ Terms accepted: $termsAccepted'); + + if (!termsAccepted) { + debugPrint('🗺️ Showing terms and conditions dialog'); + // Show terms and conditions + await GoogleMapsNavigator.showTermsAndConditionsDialog( + 'Plan B Logistics', + 'com.goutezplanb.planbLogistic', + ); + } + + // Initialize navigation session + debugPrint('🗺️ Initializing navigation session'); + await GoogleMapsNavigator.initializeNavigationSession(); + debugPrint('🗺️ Navigation session initialized successfully'); + } catch (e) { + debugPrint('❌ Error initializing navigation: $e'); + } + } + + @override + void didUpdateWidget(DeliveryMap oldWidget) { + super.didUpdateWidget(oldWidget); + if (oldWidget.selectedDelivery != widget.selectedDelivery) { + _updateDestination(); + } + } + + void _updateDestination() { + if (widget.selectedDelivery != null) { + final address = widget.selectedDelivery!.deliveryAddress; + if (address?.latitude != null && address?.longitude != null) { + setState(() { + _destinationLocation = LatLng( + latitude: address!.latitude!, + longitude: address.longitude!, + ); + }); + _navigateToLocation(_destinationLocation!); + } + } + } + + Future _navigateToLocation(LatLng location) async { + if (_navigationController == null) return; + + try { + await _navigationController!.animateCamera( + CameraUpdate.newLatLngZoom(location, 15), + ); + } catch (e) { + debugPrint('Error moving camera: $e'); + } + } + + Future _startNavigation() async { + if (_destinationLocation == null) return; + + try { + final waypoint = NavigationWaypoint.withLatLngTarget( + title: widget.selectedDelivery?.name ?? 'Destination', + target: _destinationLocation!, + ); + + final destinations = Destinations( + waypoints: [waypoint], + displayOptions: NavigationDisplayOptions(showDestinationMarkers: true), + ); + + await GoogleMapsNavigator.setDestinations(destinations); + await GoogleMapsNavigator.startGuidance(); + + setState(() { + _isNavigating = true; + }); + } catch (e) { + debugPrint('Error starting navigation: $e'); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('Error starting navigation: $e')), + ); + } + } + } + + Future _stopNavigation() async { + try { + await GoogleMapsNavigator.stopGuidance(); + await GoogleMapsNavigator.clearDestinations(); + + setState(() { + _isNavigating = false; + }); + } catch (e) { + debugPrint('Error stopping navigation: $e'); + } + } + + @override + Widget build(BuildContext context) { + final initialPosition = widget.selectedDelivery?.deliveryAddress != null && + widget.selectedDelivery!.deliveryAddress!.latitude != null && + widget.selectedDelivery!.deliveryAddress!.longitude != null + ? LatLng( + latitude: widget.selectedDelivery!.deliveryAddress!.latitude!, + longitude: widget.selectedDelivery!.deliveryAddress!.longitude!, + ) + : const LatLng(latitude: 45.5017, longitude: -73.5673); // Default to Montreal + + return Stack( + children: [ + GoogleMapsNavigationView( + onViewCreated: (controller) { + debugPrint('🗺️ Map view created successfully'); + _navigationController = controller; + controller.setMyLocationEnabled(true); + + // Set initial camera position + controller.animateCamera( + CameraUpdate.newLatLngZoom(initialPosition, 12), + ); + debugPrint('🗺️ Initial camera position set to: $initialPosition'); + }, + initialNavigationUIEnabledPreference: NavigationUIEnabledPreference.disabled, + initialCameraPosition: CameraPosition( + target: initialPosition, + zoom: 12, + ), + ), + if (_destinationLocation != null && !_isNavigating) + Positioned( + bottom: 24, + left: 24, + right: 24, + child: ElevatedButton.icon( + onPressed: _startNavigation, + icon: const Icon(Icons.navigation), + label: const Text('Start Navigation'), + style: ElevatedButton.styleFrom( + padding: const EdgeInsets.all(16), + backgroundColor: Theme.of(context).colorScheme.primary, + foregroundColor: Theme.of(context).colorScheme.onPrimary, + ), + ), + ), + if (_isNavigating) + Positioned( + bottom: 24, + left: 24, + right: 24, + child: ElevatedButton.icon( + onPressed: _stopNavigation, + icon: const Icon(Icons.stop), + label: const Text('Stop Navigation'), + style: ElevatedButton.styleFrom( + padding: const EdgeInsets.all(16), + backgroundColor: Theme.of(context).colorScheme.error, + foregroundColor: Theme.of(context).colorScheme.onError, + ), + ), + ), + Positioned( + top: 16, + right: 16, + child: Column( + children: [ + FloatingActionButton.small( + heroTag: 'zoom_in', + onPressed: () { + _navigationController?.animateCamera(CameraUpdate.zoomIn()); + }, + child: const Icon(Icons.add), + ), + const SizedBox(height: 8), + FloatingActionButton.small( + heroTag: 'zoom_out', + onPressed: () { + _navigationController?.animateCamera(CameraUpdate.zoomOut()); + }, + child: const Icon(Icons.remove), + ), + ], + ), + ), + ], + ); + } + + @override + void dispose() { + GoogleMapsNavigator.cleanup(); + super.dispose(); + } +} diff --git a/lib/components/map_sidebar_layout.dart b/lib/components/map_sidebar_layout.dart new file mode 100644 index 0000000..b1f4cea --- /dev/null +++ b/lib/components/map_sidebar_layout.dart @@ -0,0 +1,37 @@ +import 'package:flutter/material.dart'; +import '../utils/breakpoints.dart'; + +class MapSidebarLayout extends StatelessWidget { + final Widget mapWidget; + final Widget sidebarWidget; + final double mapRatio; + + const MapSidebarLayout({ + super.key, + required this.mapWidget, + required this.sidebarWidget, + this.mapRatio = 2 / 3, + }); + + @override + Widget build(BuildContext context) { + final isMobile = MediaQuery.of(context).size.width < Breakpoints.tablet; + + if (isMobile) { + return sidebarWidget; + } + + return Row( + children: [ + Expanded( + flex: (mapRatio * 100).toInt(), + child: mapWidget, + ), + Expanded( + flex: ((1 - mapRatio) * 100).toInt(), + child: sidebarWidget, + ), + ], + ); + } +} diff --git a/lib/main.dart b/lib/main.dart index 8279eeb..a75c348 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,4 +1,5 @@ import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; import 'theme.dart'; @@ -6,7 +7,14 @@ import 'providers/providers.dart'; import 'pages/login_page.dart'; import 'pages/routes_page.dart'; -void main() { +void main() async { + WidgetsFlutterBinding.ensureInitialized(); + + await SystemChrome.setPreferredOrientations([ + DeviceOrientation.landscapeLeft, + DeviceOrientation.landscapeRight, + ]); + runApp( const ProviderScope( child: PlanBLogisticApp(), @@ -46,8 +54,22 @@ class AppHome extends ConsumerWidget { @override Widget build(BuildContext context, WidgetRef ref) { - // TODO: Re-enable authentication when Keycloak is configured - // For now, bypass auth and go directly to RoutesPage - return const RoutesPage(); + final isAuthenticatedAsync = ref.watch(isAuthenticatedProvider); + + return isAuthenticatedAsync.when( + data: (isAuthenticated) { + if (isAuthenticated) { + return const RoutesPage(); + } else { + return const LoginPage(); + } + }, + loading: () => const Scaffold( + body: Center( + child: CircularProgressIndicator(), + ), + ), + error: (error, stackTrace) => const LoginPage(), + ); } } diff --git a/lib/models/delivery_route.dart b/lib/models/delivery_route.dart index 0a46c93..af0a183 100644 --- a/lib/models/delivery_route.dart +++ b/lib/models/delivery_route.dart @@ -2,58 +2,54 @@ import '../api/types.dart'; class DeliveryRoute implements Serializable { final int id; + final int routeId; final String name; - final String? description; - final int routeFragmentId; - final int totalDeliveries; - final int completedDeliveries; - final int skippedDeliveries; + final String routeName; + final int deliveriesCount; + final int deliveredCount; + final bool completed; final String createdAt; - final String? updatedAt; const DeliveryRoute({ required this.id, + required this.routeId, required this.name, - this.description, - required this.routeFragmentId, - required this.totalDeliveries, - required this.completedDeliveries, - required this.skippedDeliveries, + required this.routeName, + required this.deliveriesCount, + required this.deliveredCount, + required this.completed, required this.createdAt, - this.updatedAt, }); factory DeliveryRoute.fromJson(Map json) { return DeliveryRoute( id: json['id'] as int, + routeId: json['routeId'] as int, name: json['name'] as String, - description: json['description'] as String?, - routeFragmentId: json['routeFragmentId'] as int, - totalDeliveries: json['totalDeliveries'] as int, - completedDeliveries: json['completedDeliveries'] as int, - skippedDeliveries: json['skippedDeliveries'] as int, + routeName: json['routeName'] as String, + deliveriesCount: json['deliveriesCount'] as int, + deliveredCount: json['deliveredCount'] as int, + completed: json['completed'] as bool, createdAt: json['createdAt'] as String, - updatedAt: json['updatedAt'] as String?, ); } double get progress { - if (totalDeliveries == 0) return 0.0; - return completedDeliveries / totalDeliveries; + if (deliveriesCount == 0) return 0.0; + return deliveredCount / deliveriesCount; } - int get pendingDeliveries => totalDeliveries - completedDeliveries - skippedDeliveries; + int get pendingDeliveries => deliveriesCount - deliveredCount; @override Map toJson() => { 'id': id, + 'routeId': routeId, 'name': name, - 'description': description, - 'routeFragmentId': routeFragmentId, - 'totalDeliveries': totalDeliveries, - 'completedDeliveries': completedDeliveries, - 'skippedDeliveries': skippedDeliveries, + 'routeName': routeName, + 'deliveriesCount': deliveriesCount, + 'deliveredCount': deliveredCount, + 'completed': completed, 'createdAt': createdAt, - 'updatedAt': updatedAt, }; } diff --git a/lib/pages/deliveries_page.dart b/lib/pages/deliveries_page.dart index 17cdaf0..0045de4 100644 --- a/lib/pages/deliveries_page.dart +++ b/lib/pages/deliveries_page.dart @@ -8,6 +8,8 @@ import '../api/openapi_config.dart'; import '../models/delivery_commands.dart'; import '../utils/breakpoints.dart'; import '../utils/responsive.dart'; +import '../components/map_sidebar_layout.dart'; +import '../components/delivery_map.dart'; class DeliveriesPage extends ConsumerStatefulWidget { final int routeFragmentId; @@ -26,6 +28,7 @@ class DeliveriesPage extends ConsumerStatefulWidget { class _DeliveriesPageState extends ConsumerState { late PageController _pageController; int _currentSegment = 0; + Delivery? _selectedDelivery; @override void initState() { @@ -58,57 +61,80 @@ class _DeliveriesPageState extends ConsumerState { .where((d) => d.delivered) .toList(); - return Column( - children: [ - Padding( - padding: const EdgeInsets.all(16.0), - child: SegmentedButton( - segments: const [ - ButtonSegment( - value: 0, - label: Text('To Do'), - ), - ButtonSegment( - value: 1, - label: Text('Delivered'), - ), - ], - selected: {_currentSegment}, - onSelectionChanged: (Set newSelection) { - setState(() { - _currentSegment = newSelection.first; - _pageController.animateToPage( - _currentSegment, - duration: const Duration(milliseconds: 300), - curve: Curves.easeInOut, - ); - }); - }, + return MapSidebarLayout( + mapWidget: DeliveryMap( + deliveries: deliveries, + selectedDelivery: _selectedDelivery, + onDeliverySelected: (delivery) { + setState(() { + _selectedDelivery = delivery; + }); + }, + ), + sidebarWidget: Column( + children: [ + Padding( + padding: const EdgeInsets.all(16.0), + child: SegmentedButton( + segments: const [ + ButtonSegment( + value: 0, + label: Text('To Do'), + ), + ButtonSegment( + value: 1, + label: Text('Delivered'), + ), + ], + selected: {_currentSegment}, + onSelectionChanged: (Set newSelection) { + setState(() { + _currentSegment = newSelection.first; + _pageController.animateToPage( + _currentSegment, + duration: const Duration(milliseconds: 300), + curve: Curves.easeInOut, + ); + }); + }, + ), ), - ), - Expanded( - child: PageView( - controller: _pageController, - onPageChanged: (index) { - setState(() { - _currentSegment = index; - }); - }, - children: [ - DeliveryListView( - deliveries: todoDeliveries, - onAction: (delivery, action) => - _handleDeliveryAction(context, delivery, action, token), - ), - DeliveryListView( - deliveries: completedDeliveries, - onAction: (delivery, action) => - _handleDeliveryAction(context, delivery, action, token), - ), - ], + Expanded( + child: PageView( + controller: _pageController, + onPageChanged: (index) { + setState(() { + _currentSegment = index; + }); + }, + children: [ + DeliveryListView( + deliveries: todoDeliveries, + selectedDelivery: _selectedDelivery, + onDeliverySelected: (delivery) { + setState(() { + _selectedDelivery = delivery; + }); + }, + onAction: (delivery, action) => + _handleDeliveryAction(context, delivery, action, token), + ), + DeliveryListView( + deliveries: completedDeliveries, + selectedDelivery: _selectedDelivery, + onDeliverySelected: (delivery) { + setState(() { + _selectedDelivery = delivery; + }); + }, + onAction: (delivery, action) => + _handleDeliveryAction(context, delivery, action, token), + ), + ], + ), ), - ), - ], + ], + ), ); }, loading: () => const Center( @@ -200,19 +226,8 @@ class _DeliveriesPageState extends ConsumerState { break; case 'map': - if (delivery.deliveryAddress != null) { - final address = delivery.deliveryAddress!; - final Uri mapUri = Uri( - scheme: 'https', - host: 'maps.google.com', - queryParameters: { - 'q': '${address.latitude},${address.longitude}', - }, - ); - if (await canLaunchUrl(mapUri)) { - await launchUrl(mapUri); - } - } + // Navigation is now handled in-app by the DeliveryMap component + // Just ensure the delivery is selected break; } } @@ -220,11 +235,15 @@ class _DeliveriesPageState extends ConsumerState { class DeliveryListView extends StatelessWidget { final List deliveries; + final Delivery? selectedDelivery; + final ValueChanged onDeliverySelected; final Function(Delivery, String) onAction; const DeliveryListView({ super.key, required this.deliveries, + this.selectedDelivery, + required this.onDeliverySelected, required this.onAction, }); @@ -246,6 +265,8 @@ class DeliveryListView extends StatelessWidget { final delivery = deliveries[index]; return DeliveryCard( delivery: delivery, + isSelected: selectedDelivery?.id == delivery.id, + onTap: () => onDeliverySelected(delivery), onAction: onAction, ); }, @@ -256,11 +277,15 @@ class DeliveryListView extends StatelessWidget { class DeliveryCard extends StatelessWidget { final Delivery delivery; + final bool isSelected; + final VoidCallback onTap; final Function(Delivery, String) onAction; const DeliveryCard({ super.key, required this.delivery, + this.isSelected = false, + required this.onTap, required this.onAction, }); @@ -273,9 +298,14 @@ class DeliveryCard extends StatelessWidget { return Card( margin: const EdgeInsets.symmetric(horizontal: 8, vertical: 4), - child: Padding( - padding: const EdgeInsets.all(16.0), - child: Column( + color: isSelected + ? Theme.of(context).colorScheme.primaryContainer.withOpacity(0.3) + : null, + child: InkWell( + onTap: onTap, + child: Padding( + padding: const EdgeInsets.all(16.0), + child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( @@ -350,9 +380,12 @@ class DeliveryCard extends StatelessWidget { ), if (delivery.deliveryAddress != null) OutlinedButton.icon( - onPressed: () => onAction(delivery, 'map'), + onPressed: () { + onTap(); // Select the delivery + onAction(delivery, 'map'); + }, icon: const Icon(Icons.map), - label: const Text('Map'), + label: const Text('Navigate'), ), OutlinedButton.icon( onPressed: () => _showDeliveryActions(context), @@ -362,6 +395,7 @@ class DeliveryCard extends StatelessWidget { ], ), ], + ), ), ), ); diff --git a/lib/pages/login_page.dart b/lib/pages/login_page.dart index f58fb26..63ed0ae 100644 --- a/lib/pages/login_page.dart +++ b/lib/pages/login_page.dart @@ -2,55 +2,170 @@ import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import '../providers/providers.dart'; -class LoginPage extends ConsumerWidget { +class LoginPage extends ConsumerStatefulWidget { const LoginPage({super.key}); @override - Widget build(BuildContext context, WidgetRef ref) { + ConsumerState createState() => _LoginPageState(); +} + +class _LoginPageState extends ConsumerState { + final _formKey = GlobalKey(); + final _usernameController = TextEditingController(); + final _passwordController = TextEditingController(); + bool _isLoading = false; + bool _obscurePassword = true; + + @override + void dispose() { + _usernameController.dispose(); + _passwordController.dispose(); + super.dispose(); + } + + Future _handleLogin() async { + if (!_formKey.currentState!.validate()) { + return; + } + + setState(() { + _isLoading = true; + }); + + final authService = ref.read(authServiceProvider); + final result = await authService.login( + username: _usernameController.text.trim(), + password: _passwordController.text, + ); + + if (!mounted) return; + + setState(() { + _isLoading = false; + }); + + result.when( + success: (token) { + // ignore: unused_result + ref.refresh(isAuthenticatedProvider); + }, + onError: (error) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(error), + backgroundColor: Theme.of(context).colorScheme.error, + ), + ); + }, + cancelled: () {}, + ); + } + + @override + Widget build(BuildContext context) { return Scaffold( body: Center( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - 'Plan B Logistics', - style: Theme.of(context).textTheme.displayMedium?.copyWith( - color: Theme.of(context).colorScheme.primary, + child: SingleChildScrollView( + padding: const EdgeInsets.all(24.0), + child: ConstrainedBox( + constraints: const BoxConstraints(maxWidth: 400), + child: Form( + key: _formKey, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Icon( + Icons.local_shipping, + size: 80, + color: Theme.of(context).colorScheme.primary, + ), + const SizedBox(height: 24), + Text( + 'Plan B Logistics', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.displayMedium?.copyWith( + color: Theme.of(context).colorScheme.primary, + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 8), + Text( + 'Delivery Management System', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyLarge?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant, + ), + ), + const SizedBox(height: 48), + TextFormField( + controller: _usernameController, + decoration: const InputDecoration( + labelText: 'Username', + hintText: 'Enter your username', + prefixIcon: Icon(Icons.person), + border: OutlineInputBorder(), + ), + textInputAction: TextInputAction.next, + enabled: !_isLoading, + validator: (value) { + if (value == null || value.trim().isEmpty) { + return 'Please enter your username'; + } + return null; + }, + ), + const SizedBox(height: 16), + TextFormField( + controller: _passwordController, + decoration: InputDecoration( + labelText: 'Password', + hintText: 'Enter your password', + prefixIcon: const Icon(Icons.lock), + border: const OutlineInputBorder(), + suffixIcon: IconButton( + icon: Icon( + _obscurePassword ? Icons.visibility : Icons.visibility_off, + ), + onPressed: () { + setState(() { + _obscurePassword = !_obscurePassword; + }); + }, + ), + ), + obscureText: _obscurePassword, + textInputAction: TextInputAction.done, + enabled: !_isLoading, + onFieldSubmitted: (_) => _handleLogin(), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Please enter your password'; + } + return null; + }, + ), + const SizedBox(height: 24), + FilledButton( + onPressed: _isLoading ? null : _handleLogin, + style: FilledButton.styleFrom( + padding: const EdgeInsets.symmetric(vertical: 16), + ), + child: _isLoading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + valueColor: AlwaysStoppedAnimation(Colors.white), + ), + ) + : const Text('Login'), + ), + ], ), ), - const SizedBox(height: 16), - Text( - 'Delivery Management System', - style: Theme.of(context).textTheme.bodyMedium, - ), - const SizedBox(height: 40), - ElevatedButton( - onPressed: () async { - final authService = ref.read(authServiceProvider); - final result = await authService.login(); - result.when( - success: (token) { - if (context.mounted) { - // ignore: unused_result - ref.refresh(isAuthenticatedProvider); - } - }, - onError: (error) { - if (context.mounted) { - ScaffoldMessenger.of(context).showSnackBar( - SnackBar(content: Text('Login failed: $error')), - ); - } - }, - cancelled: () {}, - ); - }, - style: ElevatedButton.styleFrom( - padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 16), - ), - child: const Text('Login with Keycloak'), - ), - ], + ), ), ), ); diff --git a/lib/pages/routes_page.dart b/lib/pages/routes_page.dart index 3827b29..b3f45c6 100644 --- a/lib/pages/routes_page.dart +++ b/lib/pages/routes_page.dart @@ -143,7 +143,7 @@ class RoutesPage extends ConsumerWidget { Navigator.of(context).push( MaterialPageRoute( builder: (context) => DeliveriesPage( - routeFragmentId: route.routeFragmentId, + routeFragmentId: route.id, routeName: route.name, ), ), @@ -163,7 +163,7 @@ class RoutesPage extends ConsumerWidget { ), SizedBox(height: ResponsiveSpacing.sm(context)), Text( - '${route.completedDeliveries}/${route.totalDeliveries} completed', + '${route.deliveredCount}/${route.deliveriesCount} completed', style: Theme.of(context).textTheme.bodySmall, ), SizedBox(height: ResponsiveSpacing.md(context)), diff --git a/lib/providers/providers.dart b/lib/providers/providers.dart index b7b039a..528ed6b 100644 --- a/lib/providers/providers.dart +++ b/lib/providers/providers.dart @@ -36,41 +36,10 @@ final authTokenProvider = FutureProvider((ref) async { }); final deliveryRoutesProvider = FutureProvider>((ref) async { - // ignore: unused_local_variable - final client = ref.watch(apiClientProvider); final token = ref.watch(authTokenProvider).valueOrNull; - // TODO: Remove mock data when Keycloak is configured if (token == null) { - return [ - DeliveryRoute( - id: 1, - name: 'Route A - Downtown', - routeFragmentId: 1, - totalDeliveries: 12, - completedDeliveries: 5, - skippedDeliveries: 0, - createdAt: DateTime.now().subtract(const Duration(days: 1)).toIso8601String(), - ), - DeliveryRoute( - id: 2, - name: 'Route B - Suburbs', - routeFragmentId: 2, - totalDeliveries: 8, - completedDeliveries: 8, - skippedDeliveries: 0, - createdAt: DateTime.now().subtract(const Duration(days: 2)).toIso8601String(), - ), - DeliveryRoute( - id: 3, - name: 'Route C - Industrial Zone', - routeFragmentId: 3, - totalDeliveries: 15, - completedDeliveries: 3, - skippedDeliveries: 2, - createdAt: DateTime.now().subtract(const Duration(days: 3)).toIso8601String(), - ), - ]; + throw Exception('User not authenticated'); } // Create a new client with auth token @@ -85,8 +54,14 @@ final deliveryRoutesProvider = FutureProvider>((ref) async { endpoint: 'simpleDeliveryRouteQueryItems', query: _EmptyQuery(), fromJson: (json) { - final routes = json['items'] as List?; - return routes?.map((r) => DeliveryRoute.fromJson(r as Map)).toList() ?? []; + // API returns data wrapped in object with "data" field + if (json is Map) { + final data = json['data']; + if (data is List) { + return (data as List).map((r) => DeliveryRoute.fromJson(r as Map)).toList(); + } + } + return []; }, ); @@ -94,13 +69,10 @@ final deliveryRoutesProvider = FutureProvider>((ref) async { }); final deliveriesProvider = FutureProvider.family, int>((ref, routeFragmentId) async { - // ignore: unused_local_variable - final client = ref.watch(apiClientProvider); final token = ref.watch(authTokenProvider).valueOrNull; - // TODO: Remove mock data when Keycloak is configured if (token == null) { - return _getMockDeliveries(routeFragmentId); + throw Exception('User not authenticated'); } final authClient = CqrsApiClient( @@ -114,8 +86,14 @@ final deliveriesProvider = FutureProvider.family, int>((ref, rout endpoint: 'simpleDeliveriesQueryItems', query: _DeliveriesQuery(routeFragmentId: routeFragmentId), fromJson: (json) { - final items = json['items'] as List?; - return items?.map((d) => Delivery.fromJson(d as Map)).toList() ?? []; + // API returns data wrapped in object with "data" field + if (json is Map) { + final data = json['data']; + if (data is List) { + return (data as List).map((d) => Delivery.fromJson(d as Map)).toList(); + } + } + return []; }, ); @@ -126,65 +104,6 @@ final languageProvider = StateProvider((ref) { return 'fr'; }); -// Mock data generator for testing without authentication -List _getMockDeliveries(int routeFragmentId) { - final mockDeliveries = []; - - for (int i = 1; i <= 6; i++) { - final isDelivered = i <= 2; - mockDeliveries.add( - Delivery( - id: i, - routeFragmentId: routeFragmentId, - deliveryIndex: i, - orders: [ - DeliveryOrder( - id: i * 100, - isNewCustomer: i == 3, - totalAmount: 150.0 + (i * 10), - totalItems: 3 + i, - contacts: [ - DeliveryContact( - firstName: 'Client', - lastName: 'Name$i', - fullName: 'Client Name $i', - phoneNumber: '+212${i}23456789', - ), - ], - contact: DeliveryContact( - firstName: 'Client', - lastName: 'Name$i', - fullName: 'Client Name $i', - phoneNumber: '+212${i}23456789', - ), - ), - ], - deliveryAddress: DeliveryAddress( - id: i, - line1: 'Street $i', - line2: 'Building ${i * 10}', - postalCode: '3000${i.toString().padLeft(2, '0')}', - city: 'Casablanca', - subdivision: 'Casablanca-Settat', - countryCode: 'MA', - latitude: 33.5731 + (i * 0.01), - longitude: -7.5898 + (i * 0.01), - formattedAddress: 'Street $i, Building ${i * 10}, Casablanca, Morocco', - ), - delivered: isDelivered, - isSkipped: false, - hasBeenSkipped: false, - deliveredAt: isDelivered ? DateTime.now().subtract(Duration(hours: i)).toIso8601String() : null, - name: 'Delivery #${routeFragmentId}-$i', - createdAt: DateTime.now().subtract(Duration(days: 1)).toIso8601String(), - updatedAt: DateTime.now().toIso8601String(), - ), - ); - } - - return mockDeliveries; -} - class _EmptyQuery implements Serializable { @override Map toJson() => {}; diff --git a/lib/services/auth_service.dart b/lib/services/auth_service.dart index 9fe3f23..36b9700 100644 --- a/lib/services/auth_service.dart +++ b/lib/services/auth_service.dart @@ -1,46 +1,114 @@ -import 'package:flutter_appauth/flutter_appauth.dart'; +import 'dart:convert'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; +import 'package:http/http.dart' as http; +import 'package:http_interceptor/http_interceptor.dart'; import 'package:jwt_decoder/jwt_decoder.dart'; import '../models/user_profile.dart'; +import '../utils/logging_interceptor.dart'; class AuthService { static const String _tokenKey = 'auth_token'; static const String _refreshTokenKey = 'refresh_token'; + static const String _tokenEndpoint = 'https://auth.goutezplanb.com/realms/planb-internal/protocol/openid-connect/token'; + static const String _clientId = 'delivery-mobile-app'; - final FlutterAppAuth _appAuth; final FlutterSecureStorage _secureStorage; + final http.Client _httpClient; AuthService({ - FlutterAppAuth? appAuth, FlutterSecureStorage? secureStorage, - }) : _appAuth = appAuth ?? const FlutterAppAuth(), - _secureStorage = secureStorage ?? const FlutterSecureStorage(); - - Future login() async { - try { - final result = await _appAuth.authorizeAndExchangeCode( - AuthorizationTokenRequest( - 'delivery-mobile-app', - 'com.goutezplanb.delivery://callback', - discoveryUrl: 'https://auth.goutezplanb.com/realms/planb-internal/.well-known/openid-configuration', - scopes: const ['openid', 'profile', 'offline_access'], - promptValues: const ['login'], + http.Client? httpClient, + }) : _secureStorage = secureStorage ?? const FlutterSecureStorage( + aOptions: AndroidOptions( + encryptedSharedPreferences: true, + ), + iOptions: IOSOptions( + accessibility: KeychainAccessibility.first_unlock, + ), + mOptions: MacOsOptions( + accessibility: KeychainAccessibility.first_unlock, + ), ), + _httpClient = httpClient ?? InterceptedClient.build( + interceptors: [LoggingInterceptor()], + ); + + Future login({ + required String username, + required String password, + }) async { + try { + final response = await _httpClient.post( + Uri.parse(_tokenEndpoint), + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + body: { + 'grant_type': 'password', + 'client_id': _clientId, + 'username': username, + 'password': password, + 'scope': 'openid profile offline_access', + }, ); - // ignore: unnecessary_null_comparison - if (result == null) { - return const AuthResult.cancelled(); - } + if (response.statusCode == 200) { + final data = json.decode(response.body) as Map; + final accessToken = data['access_token'] as String; + final refreshToken = data['refresh_token'] as String?; - await _secureStorage.write(key: _tokenKey, value: result.accessToken ?? ''); - if (result.refreshToken != null) { - await _secureStorage.write(key: _refreshTokenKey, value: result.refreshToken!); - } + await _secureStorage.write(key: _tokenKey, value: accessToken); + if (refreshToken != null) { + await _secureStorage.write(key: _refreshTokenKey, value: refreshToken); + } - return AuthResult.success(token: result.accessToken ?? ''); + return AuthResult.success(token: accessToken); + } else if (response.statusCode == 401) { + return AuthResult.error(error: 'Invalid username or password'); + } else { + return AuthResult.error(error: 'Authentication failed: ${response.statusCode}'); + } } catch (e) { - return AuthResult.error(error: e.toString()); + return AuthResult.error(error: 'Network error: ${e.toString()}'); + } + } + + Future refreshAccessToken() async { + try { + final refreshToken = await getRefreshToken(); + if (refreshToken == null) { + return AuthResult.error(error: 'No refresh token available'); + } + + final response = await _httpClient.post( + Uri.parse(_tokenEndpoint), + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + body: { + 'grant_type': 'refresh_token', + 'client_id': _clientId, + 'refresh_token': refreshToken, + }, + ); + + if (response.statusCode == 200) { + final data = json.decode(response.body) as Map; + final accessToken = data['access_token'] as String; + final newRefreshToken = data['refresh_token'] as String?; + + await _secureStorage.write(key: _tokenKey, value: accessToken); + if (newRefreshToken != null) { + await _secureStorage.write(key: _refreshTokenKey, value: newRefreshToken); + } + + return AuthResult.success(token: accessToken); + } else { + await logout(); + return AuthResult.error(error: 'Token refresh failed'); + } + } catch (e) { + return AuthResult.error(error: 'Token refresh error: ${e.toString()}'); } } diff --git a/lib/utils/logging_interceptor.dart b/lib/utils/logging_interceptor.dart new file mode 100644 index 0000000..5bc3b11 --- /dev/null +++ b/lib/utils/logging_interceptor.dart @@ -0,0 +1,32 @@ +import 'package:http_interceptor/http_interceptor.dart'; + +class LoggingInterceptor implements InterceptorContract { + @override + Future interceptRequest({required BaseRequest request}) async { + print('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'); + print('📤 REQUEST: ${request.method} ${request.url}'); + print('Headers: ${request.headers}'); + if (request is Request) { + print('Body: ${request.body}'); + } + print('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'); + return request; + } + + @override + Future interceptResponse({required BaseResponse response}) async { + print('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'); + print('📥 RESPONSE: ${response.statusCode} ${response.request?.url}'); + if (response is Response) { + print('Body: ${response.body}'); + } + print('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'); + return response; + } + + @override + Future shouldInterceptRequest() async => true; + + @override + Future shouldInterceptResponse() async => true; +} diff --git a/macos/.gitignore b/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..4b81f9b --- /dev/null +++ b/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..5caa9d1 --- /dev/null +++ b/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..c423619 --- /dev/null +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,22 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import file_selector_macos +import flutter_appauth +import flutter_secure_storage_macos +import path_provider_foundation +import shared_preferences_foundation +import url_launcher_macos + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin")) + FlutterAppauthPlugin.register(with: registry.registrar(forPlugin: "FlutterAppauthPlugin")) + FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) + PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) + SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) + UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) +} diff --git a/macos/Podfile b/macos/Podfile new file mode 100644 index 0000000..ff5ddb3 --- /dev/null +++ b/macos/Podfile @@ -0,0 +1,42 @@ +platform :osx, '10.15' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_macos_podfile_setup + +target 'Runner' do + use_frameworks! + + flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_macos_build_settings(target) + end +end diff --git a/macos/Podfile.lock b/macos/Podfile.lock new file mode 100644 index 0000000..9441af1 --- /dev/null +++ b/macos/Podfile.lock @@ -0,0 +1,66 @@ +PODS: + - AppAuth (1.7.5): + - AppAuth/Core (= 1.7.5) + - AppAuth/ExternalUserAgent (= 1.7.5) + - AppAuth/Core (1.7.5) + - AppAuth/ExternalUserAgent (1.7.5): + - AppAuth/Core + - file_selector_macos (0.0.1): + - FlutterMacOS + - flutter_appauth (0.0.1): + - AppAuth (= 1.7.5) + - FlutterMacOS + - flutter_secure_storage_macos (6.1.3): + - FlutterMacOS + - FlutterMacOS (1.0.0) + - path_provider_foundation (0.0.1): + - Flutter + - FlutterMacOS + - shared_preferences_foundation (0.0.1): + - Flutter + - FlutterMacOS + - url_launcher_macos (0.0.1): + - FlutterMacOS + +DEPENDENCIES: + - file_selector_macos (from `Flutter/ephemeral/.symlinks/plugins/file_selector_macos/macos`) + - flutter_appauth (from `Flutter/ephemeral/.symlinks/plugins/flutter_appauth/macos`) + - flutter_secure_storage_macos (from `Flutter/ephemeral/.symlinks/plugins/flutter_secure_storage_macos/macos`) + - FlutterMacOS (from `Flutter/ephemeral`) + - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) + - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`) + - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) + +SPEC REPOS: + trunk: + - AppAuth + +EXTERNAL SOURCES: + file_selector_macos: + :path: Flutter/ephemeral/.symlinks/plugins/file_selector_macos/macos + flutter_appauth: + :path: Flutter/ephemeral/.symlinks/plugins/flutter_appauth/macos + flutter_secure_storage_macos: + :path: Flutter/ephemeral/.symlinks/plugins/flutter_secure_storage_macos/macos + FlutterMacOS: + :path: Flutter/ephemeral + path_provider_foundation: + :path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin + shared_preferences_foundation: + :path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin + url_launcher_macos: + :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos + +SPEC CHECKSUMS: + AppAuth: 501c04eda8a8d11f179dbe8637b7a91bb7e5d2fa + file_selector_macos: 9e9e068e90ebee155097d00e89ae91edb2374db7 + flutter_appauth: 9e1412df1f0d76b2460e6657d01d4f866496fe88 + flutter_secure_storage_macos: 7f45e30f838cf2659862a4e4e3ee1c347c2b3b54 + FlutterMacOS: d0db08ddef1a9af05a5ec4b724367152bb0500b1 + path_provider_foundation: bb55f6dbba17d0dccd6737fe6f7f34fbd0376880 + shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb + url_launcher_macos: f87a979182d112f911de6820aefddaf56ee9fbfd + +PODFILE CHECKSUM: 54d867c82ac51cbd61b565781b9fada492027009 + +COCOAPODS: 1.16.2 diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..3260472 --- /dev/null +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,806 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; + 8DB9DF1D0D67F627976B9567 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 041F85059F9328D34942F9D6 /* Pods_Runner.framework */; }; + C401667496D831E1EC00C98A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA5800EB37305EF0FF4DF44E /* Pods_RunnerTests.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 041F85059F9328D34942F9D6 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2EC7CE87754DF92A83806AA2 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* planb_logistic.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = planb_logistic.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 8F033A11E9EAC4D52F9AB11B /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; + AE7E230E90375211956F6A11 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; + B85AF793493B7D2C94B0B6C0 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; + B94CEBF26FBF21F1D205C7F5 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + E61D7373F33D6ACFB1A7CE5A /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + FA5800EB37305EF0FF4DF44E /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + C401667496D831E1EC00C98A /* Pods_RunnerTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DB9DF1D0D67F627976B9567 /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + 9ADF7908BFA81F757DA35875 /* Pods */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* planb_logistic.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + 9ADF7908BFA81F757DA35875 /* Pods */ = { + isa = PBXGroup; + children = ( + E61D7373F33D6ACFB1A7CE5A /* Pods-Runner.debug.xcconfig */, + B94CEBF26FBF21F1D205C7F5 /* Pods-Runner.release.xcconfig */, + AE7E230E90375211956F6A11 /* Pods-Runner.profile.xcconfig */, + 8F033A11E9EAC4D52F9AB11B /* Pods-RunnerTests.debug.xcconfig */, + B85AF793493B7D2C94B0B6C0 /* Pods-RunnerTests.release.xcconfig */, + 2EC7CE87754DF92A83806AA2 /* Pods-RunnerTests.profile.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 041F85059F9328D34942F9D6 /* Pods_Runner.framework */, + FA5800EB37305EF0FF4DF44E /* Pods_RunnerTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + C9F125A1B896BACD72110FA3 /* [CP] Check Pods Manifest.lock */, + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + C9BE0B5B71F736CE7DDAB12A /* [CP] Check Pods Manifest.lock */, + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + A43917F429562A98B78A57E7 /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* planb_logistic.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; + A43917F429562A98B78A57E7 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + C9BE0B5B71F736CE7DDAB12A /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + C9F125A1B896BACD72110FA3 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8F033A11E9EAC4D52F9AB11B /* Pods-RunnerTests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.goutezplanb.planbLogistic.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/planb_logistic.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/planb_logistic"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B85AF793493B7D2C94B0B6C0 /* Pods-RunnerTests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.goutezplanb.planbLogistic.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/planb_logistic.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/planb_logistic"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2EC7CE87754DF92A83806AA2 /* Pods-RunnerTests.profile.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.goutezplanb.planbLogistic.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/planb_logistic.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/planb_logistic"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = LD76P8L42W; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = LD76P8L42W; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = LD76P8L42W; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..4ad71b9 --- /dev/null +++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..21a3cc1 --- /dev/null +++ b/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..b3c1761 --- /dev/null +++ b/macos/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import Cocoa +import FlutterMacOS + +@main +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000..82b6f9d Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000..13b35eb Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000..0a3f5fa Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png new file mode 100644 index 0000000..bdb5722 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png new file mode 100644 index 0000000..f083318 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png new file mode 100644 index 0000000..326c0e7 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000..2f1632c Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ diff --git a/macos/Runner/Base.lproj/MainMenu.xib b/macos/Runner/Base.lproj/MainMenu.xib new file mode 100644 index 0000000..80e867a --- /dev/null +++ b/macos/Runner/Base.lproj/MainMenu.xib @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..b11c3b9 --- /dev/null +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = planb_logistic + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.goutezplanb.planbLogistic + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2025 com.goutezplanb. All rights reserved. diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..8d27d3e --- /dev/null +++ b/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,18 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + com.apple.security.network.client + + keychain-access-groups + + $(AppIdentifierPrefix)com.goutezplanb.planb-logistic + + + diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements new file mode 100644 index 0000000..e7e82c3 --- /dev/null +++ b/macos/Runner/Release.entitlements @@ -0,0 +1,14 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.network.client + + keychain-access-groups + + $(AppIdentifierPrefix)com.goutezplanb.planb-logistic + + + diff --git a/macos/RunnerTests/RunnerTests.swift b/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..61f3bd1 --- /dev/null +++ b/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Cocoa +import FlutterMacOS +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/pubspec.lock b/pubspec.lock index 1e15fe9..1f95cc2 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -453,6 +453,14 @@ packages: url: "https://pub.dev" source: hosted version: "14.8.1" + google_navigation_flutter: + dependency: "direct main" + description: + name: google_navigation_flutter + sha256: f1a892e58c94601716ed5879e07c2a31031fcd609088705f5c97dc9c28748717 + url: "https://pub.dev" + source: hosted + version: "0.6.5" graphs: dependency: transitive description: @@ -469,6 +477,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.5.0" + http_interceptor: + dependency: "direct main" + description: + name: http_interceptor + sha256: "288c6ded4a2c66de2730a16b30cbd29d05d042a5e61304d9b4be0e16378f4082" + url: "https://pub.dev" + source: hosted + version: "2.0.0" http_multi_server: dependency: transitive description: @@ -673,10 +689,10 @@ packages: dependency: transitive description: name: meta - sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" url: "https://pub.dev" source: hosted - version: "1.16.0" + version: "1.17.0" mime: dependency: transitive description: @@ -877,6 +893,62 @@ packages: url: "https://pub.dev" source: hosted version: "2.6.5" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5" + url: "https://pub.dev" + source: hosted + version: "2.5.3" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "34266009473bf71d748912da4bf62d439185226c03e01e2d9687bc65bbfcb713" + url: "https://pub.dev" + source: hosted + version: "2.4.15" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "1c33a907142607c40a7542768ec9badfd16293bac51da3a4482623d15845f88b" + url: "https://pub.dev" + source: hosted + version: "2.5.5" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 + url: "https://pub.dev" + source: hosted + version: "2.4.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" + url: "https://pub.dev" + source: hosted + version: "2.4.1" shelf: dependency: transitive description: @@ -982,10 +1054,10 @@ packages: dependency: transitive description: name: test_api - sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00" + sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55 url: "https://pub.dev" source: hosted - version: "0.7.6" + version: "0.7.7" timing: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 9d72fa0..7425672 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -38,6 +38,9 @@ dependencies: permission_handler: ^11.3.0 go_router: ^14.0.0 + shared_preferences: ^2.5.3 + http_interceptor: ^2.0.0 + google_navigation_flutter: ^0.6.5 dev_dependencies: flutter_test: diff --git a/web/index.html b/web/index.html index d285661..80d8891 100644 --- a/web/index.html +++ b/web/index.html @@ -31,6 +31,9 @@ planb_logistic + + +