Posts

Showing posts from November, 2020

Appstore Flutter common errors

OneSignal module not found Add the following in the PodFile just before post_install do |installer| line target 'OneSignalNotificationServiceExtension' do  use_frameworks! pod 'OneSignal', '>= 2.9.3', '< 3.0'  end

Appstore upload tips

Upload Error ERROR ITMS-90208: "Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist." Basically, setting the version from 8 to 9 in ios/Flutter/AppFrameworkInfo.plist's MinimumOSVersion did the trick. XCode > Runner > Deployment Target > 9.0 Project > iOS > Flutter > App.Framework > info.plist > MinimumOSVersion > 9 Project > iOS > Flutter > Flutter.Framework > info.plist > MinimumOSVersion > 9