adjust / flutter_sdk

This is the Flutter SDK of
MIT License
58 stars 49 forks source link

module 'adjust_sdk' not found on IOS #53

Closed roberto-ayala closed 3 years ago

roberto-ayala commented 3 years ago

When I execute flutter run is working fine, when run flutter build it fail

This fail is present only on ios, on android build working well

...GeneratedPluginRegistrant.m:10:9: fatal error: module 'adjust_sdk' not found @import adjust_sdk;


                        1 error generated.
roberto-ayala commented 3 years ago

My platform in the Podfile file was 11.0, this caused the problem, I lowered the platform to 10.0 and the problem has been solved.

platform :ios, '10.0'