From 98526de92721e0907f9f61e20cb7c427aae21417 Mon Sep 17 00:00:00 2001 From: Woojae Kim Date: Sun, 12 Jan 2025 01:43:36 +0900 Subject: [PATCH] chore: remove RNGoogleMobileAdsSpec.podspec --- RNGoogleMobileAdsSpec.podspec | 44 ----------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 RNGoogleMobileAdsSpec.podspec diff --git a/RNGoogleMobileAdsSpec.podspec b/RNGoogleMobileAdsSpec.podspec deleted file mode 100644 index 720d83c5..00000000 --- a/RNGoogleMobileAdsSpec.podspec +++ /dev/null @@ -1,44 +0,0 @@ -require 'json' -package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) -new_arch_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1' - -Pod::Spec.new do |s| - s.name = "RNGoogleMobileAdsSpec" - - s.version = package["version"] - s.description = package["description"] - s.summary = <<-DESC - #{package["description"]} - DESC - s.homepage = "http://invertase.io/oss/react-native-google-mobile-ads" - s.license = package['license'] - s.authors = "Invertase Limited" - s.source = { :git => "#{package["repository"]["url"]}.git", :tag => "v#{s.version}" } - s.social_media_url = 'http://twitter.com/invertaseio' - s.ios.deployment_target = "12.0" - s.cocoapods_version = '>= 1.12.0' - s.source_files = "ios/RNGoogleMobileAdsSpec/**/*.{h,m,mm,swift}" - - # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. - # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79. - if respond_to?(:install_modules_dependencies, true) - install_modules_dependencies(s) - else - s.dependency "React-Core" - - # Don't install the dependencies when we run `pod install` in the old architecture. - if new_arch_enabled then - s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1" - s.pod_target_xcconfig = { - "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"", - "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", - "CLANG_CXX_LANGUAGE_STANDARD" => "c++17" - } - s.dependency "React-Codegen" - s.dependency "RCT-Folly" - s.dependency "RCTRequired" - s.dependency "RCTTypeSafety" - s.dependency "ReactCommon/turbomodule/core" - end - end -end