about summary refs log tree commit diff
path: root/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec
blob: e6a982a70ed9add11e82f424f0d898cae536e663 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
  s.name           = 'EmojiPickerModule'
  s.version        = '1.0.0'
  s.summary        = 'An emoji picker for use in Bluesky'
  s.description    = 'An emoji picker for use in Bluesky'
  s.author         = 'alanjhughes'
  s.homepage       = 'https://github.com/bluesky-social/social-app'
  s.platforms      = {
    :ios => '15.1',
    :tvos => '15.1'
  }
  s.source         = { git: '' }
  s.swift_version  = '5.4'
  s.static_framework = true

  s.dependency 'ExpoModulesCore'
  s.dependency 'MCEmojiPicker'

  # Swift/Objective-C compatibility
  s.pod_target_xcconfig = {
    'DEFINES_MODULE' => 'YES',
  }

  s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
end