Upgrade to Pro — share decks privately, control downloads, hide ads and more …

[FlutterTokyo#6]Navigating Flutter Upgrades

[FlutterTokyo#6]Navigating Flutter Upgrades

This is the slide, "Navigating Flutter Upgrades" on the mobile seminor.
#flutter #flutterjp #flutter_tokyo

Kenichi Kambara

April 02, 2025
Tweet

More Decks by Kenichi Kambara

Other Decks in Technology

Transcript

  1. About me •Mobile App Development •Speeches (e.g. 20 Int’l/100+ Domestic)

    •Writings (e.g. 10 Dev Books) •[Of fi cial] Evangelist at NTT TechnoCross •[Private] iplatform.org ਆݪ ݈Ұ (X:@korodroid) NEW
  2. Problems Encountered •Build Process Issues •Package Compatibility •Changes or Deprecation

    of APIs •UI Layout Breakages •Unexpected Behavior •Other Issues 
  3. Problems Encountered •Build Process Issues •Package Compatibility •Changes or Deprecation

    of APIs •UI Layout Breakages •Unexpected Behavior •Other Issues 
  4. 1. Build Process Issues (except Package Compatibility) •Xcode Version Changes

    •CocoaPods Dependencies •Code Signing Con fi gurations •iOS Build Settings Adjustments In most cases, these issues occurred during iOS builds. 
  5. Solution •Check build logs in detail •Ask Generative AI for

    suggestions •Search for similar issues online •Try other investigation methods (e.g., Git diff, of fi cial release notes, plugin issue trackers, community support) 
  6. Solution •Check build logs in detail •Ask Generative AI for

    suggestions •Search for similar issues online •Try other investigation methods (e.g., Git diff, of fi cial release notes, plugin issue trackers, community support) 
  7. 2. Package Compatibility Dart SDK Version Issues During Flutter Upgrades

    e.g. Because some_package requires SDK version <3.0.0 and your SDK is 3.1.0, version solving failed. 
  8. Solutions •Update dependencies to their latest versions •Use dependency_overrides temporarily

    •Fork the package and modify its Dart SDK constraints •Replace with an alternative package •Downgrade Flutter to match compatible Dart version 
  9. Solutions •Update dependencies to their latest versions •Use dependency_overrides temporarily

    •Fork the package and modify its Dart SDK constraints •Replace with an alternative package •Downgrade Flutter to match compatible Dart version 
  10. e.g. Replace with an alternative package Getting contact info: contacts_service

    -> fl utter_contacts Feature contacts_service (Before) fl utter_contacts (After) Import contacts_service/contacts_service.dart fl utter_contacts/ fl utter_contacts.dart Permission via permission_handler FlutterContacts.requestPermission() Contact Class Contact.displayName Contact.name. fi rst + Contact.name.last Fetching Contacts ContactsService.getContacts() FlutterContacts.getContacts (withProperties: true) 
  11. Please let me know if you have any requests such

    as technical speeches, technical writings and so on. Facebook:http://fb.com/kanbara.kenichi X:@korodroid LinkedIn:http://www.linkedin.com/in/korodroid Thank you so much