forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase_admob.podspec
More file actions
24 lines (22 loc) · 828 Bytes
/
firebase_admob.podspec
File metadata and controls
24 lines (22 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'firebase_admob'
s.version = '0.0.1'
s.summary = 'Firebase Admob plugin for Flutter.'
s.description = <<-DESC
Firebase Admob plugin for Flutter.
DESC
s.homepage = 'https://github.com/flutter/plugins/tree/master/packages/firebase_admob'
s.license = { :file => '../LICENSE' }
s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'Firebase/Core'
s.dependency 'Firebase/AdMob'
s.ios.deployment_target = '8.0'
s.static_framework = true
end