After adding your lib on my project, I cannot build on iOS simulator, only on real device. How to fix that ?
Podfile :
target 'Runner' do
use_frameworks!
use_modular_headers!
pod 'MobileMessaging', '9.2.1'
pod 'AcousticMobilePush', :git => 'https://github.com/Acoustic-Mobile-Push/ios.git', :tag => '3.8.2'
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
target 'RunnerNotificationServiceExtension' do
use_frameworks!
pod 'AcousticMobilePushNotification', :git => 'https://github.com/Acoustic-Mobile-Push/ios.git', :tag => '3.8.2'
end
After adding your lib on my project, I cannot build on iOS simulator, only on real device. How to fix that ?
Podfile :