You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'm using AppCenter in an iPad app that I'd like to bring to macOS using Mac Catalyst. AppCenter is installed via CocoaPods. I have to remove the AppCenter pod when trying to build the app for macOS (using Mac Catalyst). Otherwise I get the following error:
ld: in /Users/johannes/Code/testapp/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/AppCenter(MSChannelUnitConfiguration.o), building for Mac Catalyst, but linking in object file built for iOS Simulator, file '/Users/johannes/Code/testapp/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/AppCenter' for architecture x86_64
Describe the solution you'd like
I'd like to be able to compile my app for Mac Catalyst without having to remove the AppCenter pod first. Even if I can't actually use all (or any) of AppCenter's functionality on Mac Catalyst, I'd at least like to build the project without having to remove the pod.
Describe alternatives you've considered
I'm calling pod install with an environment variable when installing the pods for Mac Catalyst. Inside the Podfile I exclude the AppCenter pod when the environment variable is set:
if !BUILD_FOR_CATALYST
pod 'AppCenter', '~> 3.0'
end
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I'm using AppCenter in an iPad app that I'd like to bring to macOS using Mac Catalyst. AppCenter is installed via CocoaPods. I have to remove the AppCenter pod when trying to build the app for macOS (using Mac Catalyst). Otherwise I get the following error:
Describe the solution you'd like
I'd like to be able to compile my app for Mac Catalyst without having to remove the AppCenter pod first. Even if I can't actually use all (or any) of AppCenter's functionality on Mac Catalyst, I'd at least like to build the project without having to remove the pod.
Describe alternatives you've considered
I'm calling
pod install
with an environment variable when installing the pods for Mac Catalyst. Inside the Podfile I exclude the AppCenter pod when the environment variable is set:Additional context
N/A
The text was updated successfully, but these errors were encountered: