Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

framework not found Pods_OneSignalNotificationServiceExtension

I use OneSignal for push notification in Flutter. I can build it on devices and simulator but has the errors when archiving.

ld: framework not found Pods_OneSignalNotificationServiceExtension

like image 404
akifarhan Avatar asked Sep 03 '20 16:09

akifarhan


1 Answers

I solved the same issue in another way.

  1. close xcode project
  2. go to Android Studio
  3. flutter clean
  4. flutter pub get
  5. flutter build ios
  6. open Runner.xcoworkspace

done.

like image 146
A_Rush Avatar answered Oct 05 '22 09:10

A_Rush