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

support fb ads #14

Merged
merged 1 commit into from
Oct 24, 2024
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
Binary file modified .DS_Store
Binary file not shown.
97 changes: 97 additions & 0 deletions FacebookAdapter.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@


Pod::Spec.new do |spec|



spec.name = "FacebookAdapter"
spec.version = "0.0.67"
spec.summary = "an adapter for Meta SDK"
spec.description = "an adapter for Meta SDK for MSP S2S"

spec.homepage = "https://github.com/aimsp/msp-ios-sdk/MetaAdapter"

spec.license = "Copyright"

#

spec.author = { "huanzhiNB" => "[email protected]" }
# Or just: spec.author = "huanzhiNB"
# spec.authors = { "huanzhiNB" => "[email protected]" }
# spec.social_media_url = "https://twitter.com/huanzhiNB"

# spec.platform = :ios
# spec.platform = :ios, "5.0"

# When using multiple platforms
# spec.ios.deployment_target = "5.0"
# spec.osx.deployment_target = "10.7"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
# spec.visionos.deployment_target = "1.0"


# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the location from where the source should be retrieved.
# Supports git, hg, bzr, svn and HTTP.
#

spec.source = { :git => "https://github.com/huanzhiNB/msp-ios-sdk-public.git", :tag => "#{spec.version}" }

spec.ios.deployment_target = '13.0'


spec.source_files = "FacebookAdapter/FacebookAdapter/**/*.{h,m,swift}"
spec.exclude_files = "Classes/Exclude"

spec.dependency 'FBAudienceNetwork', '6.15.0'
spec.dependency 'MSPSharedLibraries', '0.0.64'
#spec.module_map = 'GoogleAdapter/GoogleAdapter.modulemap'

#spec.public_header_files = "GoogleAdapter//**/*.h"
#spec.vendored_frameworks= "GoogleAdapter/shared.xcframework"

spec.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' }
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }

spec.static_framework = true
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# A list of resources included with the Pod. These are copied into the
# target bundle with a build phase script. Anything else will be cleaned.
# You can preserve files from being cleaned, please don't preserve
# non-essential files like tests, examples and documentation.
#

# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"

# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"


# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Link your library with frameworks, or libraries. Libraries do not include
# the lib prefix of their name.
#

# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"

# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"


# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If your library depends on compiler flags you can set them in the xcconfig hash
# where they will only apply to your library. If you depend on other Podspecs
# you can include multiple dependencies to ensure it works.

# spec.requires_arc = true

# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"

end
Binary file added FacebookAdapter/.DS_Store
Binary file not shown.
Loading
Loading