Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v8.0.2: Remove block against ARM-based simulators #11

Merged
merged 1 commit into from
Jan 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions MOBAdvertising.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
Pod::Spec.new do |s|
s.name = 'MOBAdvertising'
s.version = '8.0.1'
s.version = '8.0.2'
s.summary = 'A wrapper for GogleMobileAds that allows one to present banner ads that show with any application, including a tab bar application'
s.homepage = 'https://github.com/Moballo-LLC/MOBAdvertising'
s.license = 'MIT'
s.author = { 'Jason Morcos - Moballo, LLC' => 'jason.morcos@moballo.com' }
s.source = { :git => 'https://github.com/Moballo-LLC/MOBAdvertising.git', :tag => s.version.to_s }

s.platforms = { :ios => "10.0" }
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'EXCLUDED_ARCHS[sdk=iphoneos*]' => 'x86_64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'EXCLUDED_ARCHS[sdk=iphoneos*]' => 'x86_64' }
s.swift_version = '5.0'
s.dependency 'Google-Mobile-Ads-SDK', '~> 9.14'

Expand Down
4 changes: 0 additions & 4 deletions _Project/MOBAdvertising.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,6 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_BITCODE = YES;
"EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64;
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
FRAMEWORK_SEARCH_PATHS = "";
HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Sources/Info.plist;
Expand Down Expand Up @@ -479,8 +477,6 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_BITCODE = YES;
ENABLE_TESTABILITY = YES;
"EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64;
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
FRAMEWORK_SEARCH_PATHS = "";
HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Sources/Info.plist;
Expand Down
4 changes: 1 addition & 3 deletions _Project/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ post_install do |installer|

# build active architecture only (Debug build all)
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'

config.build_settings['ENABLE_BITCODE'] = 'YES'

config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
config.build_settings["EXCLUDED_ARCHS[sdk=iphoneos*]"] = "x86_64"

if config.name == 'Release' || config.name == 'Pro'
config.build_settings['BITCODE_GENERATION_MODE'] = 'bitcode'
else # Debug
Expand Down
2 changes: 1 addition & 1 deletion _Project/Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>8.0.1</string>
<string>8.0.2</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
Expand Down