this repo has no description
1require 'json'
2
3package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
4
5Pod::Spec.new do |s|
6 s.name = 'ExpoAtprotoAuth'
7 s.version = package['version']
8 s.summary = package['description']
9 s.description = package['description']
10 s.license = package['license']
11 s.author = package['author']
12 s.homepage = package['homepage']
13 s.platforms = {
14 :ios => '15.1',
15 :tvos => '15.1'
16 }
17 s.swift_version = '5.4'
18 s.source = { git: 'https://github.com/haileyok/expo-atproto-auth' }
19 s.static_framework = true
20
21 s.dependency 'ExpoModulesCore'
22 s.dependency 'JOSESwift', '~> 2.3'
23
24 # Swift/Objective-C compatibility
25 s.pod_target_xcconfig = {
26 'DEFINES_MODULE' => 'YES',
27 }
28
29 s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
30end