| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #
- # Be sure to run `pod lib lint FirebaseAppDistributionInternal.podspec' to ensure this is a
- # valid spec before submitting.
- #
- Pod::Spec.new do |s|
- s.name = 'FirebaseAppDistributionInternal'
- s.version = '10.7.0-beta'
- s.summary = 'Firebase App Distribution Internal for Swift implementations'
- s.description = <<-DESC
- Not for public use.
- SDK for Swift code in Firebase App Distribution.
- DESC
- s.homepage = 'https://firebase.google.com'
- s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
- s.authors = 'Google, Inc.'
- s.source = {
- :git => 'https://github.com/firebase/firebase-ios-sdk.git',
- # :tag => 'CocoaPods-' + s.version.to_s
- :commit => '7a1a71cbd2bc0df069cd9b6cee6a7005e258ece0'
- }
- s.social_media_url = 'https://twitter.com/Firebase'
- ios_deployment_target = '11.0'
- s.swift_version = '5.3'
- s.ios.deployment_target = '11.0'
- s.cocoapods_version = '>= 1.4.0'
- s.prefix_header_file = false
- s.framework = 'Foundation'
- s.ios.framework = 'UIKit'
- base_dir = "FirebaseAppDistributionInternal/"
- s.source_files = [
- base_dir + 'Sources/**/*.{swift,h,m}',
- ]
- s.ios.resource_bundles = {
- 'AppDistributionInternalResources' => [
- base_dir + 'Resources/AppDistributionInternalStoryboard.storyboard',
- ]
- }
- s.dependency 'FirebaseCore', '~> 10.0'
- s.dependency 'FirebaseCoreExtension', '~> 10.0'
- s.dependency 'FirebaseInstallations', '~> 10.0'
- s.dependency 'GoogleUtilities/UserDefaults', '~> 7.8'
- s.pod_target_xcconfig = {
- 'GCC_C_LANGUAGE_STANDARD' => 'c99',
- 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
- }
- s.test_spec 'unit' do |unit_tests|
- unit_tests.scheme = { :code_coverage => true }
- unit_tests.source_files = [
- 'FirebaseAppDistributionInternal/Tests/Unit/**/*.swift',
- ]
- end
- end
|