Fix the build on intel XCode

pull/53/head
Tiago Daniel Jacobs 2 years ago
parent 69b0a6da9d
commit 1d57ee3def

@ -635,6 +635,7 @@
CODE_SIGN_ENTITLEMENTS = "BigBlueButton Tablet.entitlements";
CURRENT_PROJECT_VERSION = 11;
DEVELOPMENT_TEAM = N69T9W23TC;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = BigBlueButtonTablet/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = "BigBlueButton Tablet";
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.education";
@ -677,6 +678,7 @@
DEVELOPMENT_TEAM = N69T9W23TC;
GCC_C_LANGUAGE_STANDARD = gnu11;
GENERATE_INFOPLIST_FILE = YES;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = "BigBlueButton Broadcast/Info.plist";
INFOPLIST_KEY_CFBundleDisplayName = "BigBlueButton Broadcast";
INFOPLIST_KEY_NSHumanReadableCopyright = "";
@ -718,6 +720,7 @@
DEVELOPMENT_TEAM = N69T9W23TC;
GCC_C_LANGUAGE_STANDARD = gnu11;
GENERATE_INFOPLIST_FILE = YES;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = "BigBlueButton Broadcast/Info.plist";
INFOPLIST_KEY_CFBundleDisplayName = "BigBlueButton Broadcast";
INFOPLIST_KEY_NSHumanReadableCopyright = "";

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

@ -58,5 +58,13 @@ target 'BigBlueButton Tablet' do
end
end
#end of https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1188774894
# https://stackoverflow.com/a/32685434
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
# end of https://stackoverflow.com/a/32685434
end
end

@ -647,6 +647,6 @@ SPEC CHECKSUMS:
Yoga: ff994563b2fd98c982ca58e8cd9db2cdaf4dda74
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
PODFILE CHECKSUM: 37d4e6383aefcfa4695e0b0da01d3ddf36182298
PODFILE CHECKSUM: 60c0727fe96eefac3de04d7ac4413254c1f48c34
COCOAPODS: 1.11.3

Loading…
Cancel
Save