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
{{ message }}
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
When specifying pod 'HockeySDK', :subspecs => ['CrashOnlyLib'], HockeySDK-HockeySDKResources is missing team identifier.
Signing for "HockeySDK-HockeySDKResources" requires a development team. Select a development team in the Signing & Capabilities editor.
This could be workaround with appending this to the Podfile
post_install do |installer|
# pods with bundles
if target.name == 'HockeySDK-HockeySDKResources'
print "Setting team to `" + target.name + "`"
target.build_configurations.each do |config|
config.build_settings['DEVELOPMENT_TEAM'] = 'XXXXXXXX'
end
end
end
HockeySDK.framework seemed to have the wrong architecture
/Pods/HockeySDK/HockeySDK-iOS/HockeySDKCrashOnly/HockeySDK.framework/HockeySDK(BITSession.o), building for UIKitForMac, but linking in object file built for iOS Simulator, file '/Volumes/Projects/Baby/Pods/HockeySDK/HockeySDK-iOS/HockeySDKCrashOnly/HockeySDK.framework/HockeySDK' for architecture x86_64
This I'm not sure how to work around.
If there're anything I could do to opt-out a Pod when compiling for UIKitForMac would be greatly appreciated as well.
The text was updated successfully, but these errors were encountered:
But if it's false, I'll still need to be able to incorporate different version of the framework depending on the SDK it's using, are you aware of how to do that?
FYR, I have Xcode project with the Mac target enabled and the Podfile attached.
Here's my Podfile
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '12.0'
install! 'cocoapods', :disable_input_output_paths => true
target 'Baby' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'HockeySDK', :subspecs => ['CrashOnlyLib'], :inhibit_warnings => true
target 'BabyTests' do
inherit! :search_paths
# Pods for testing
end
target 'BabyUITests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
# pods with bundles
if target.name == 'HockeySDK-HockeySDKResources'
print "Setting team to `" + target.name + "`"
target.build_configurations.each do |config|
config.build_settings['DEVELOPMENT_TEAM'] = '5UAR78B6YU'
end
end
end
end
MatkovIvan
changed the title
Fails to compile when build for Project Catalyst (UIKitForMac)
Support Project Catalyst (UIKitForMac)
Jul 5, 2019
@jamztang This is a new feature request in HockeySDK. App Center is the next generation solution for HockeyApp and we will sunset HockeyAppp on November 16th, 2019. At this time, we are not adding any new features in HockeyApp SDK.
There were two Errors:
pod 'HockeySDK', :subspecs => ['CrashOnlyLib']
,HockeySDK-HockeySDKResources
is missing team identifier.This could be workaround with appending this to the Podfile
This I'm not sure how to work around.
If there're anything I could do to opt-out a Pod when compiling for UIKitForMac would be greatly appreciated as well.
The text was updated successfully, but these errors were encountered: