Skip to content

Commit

Permalink
af: Update Podspec (auth0#180)
Browse files Browse the repository at this point in the history
* Update Podspec

* Update .shiprc

* Format Podspec
  • Loading branch information
Widcket authored Oct 29, 2022
1 parent c59a58c commit f7d32fc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
3 changes: 3 additions & 0 deletions auth0_flutter/.shiprc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"lib/src/version.dart": [],
"pubspec.yaml": [
"version: {MAJOR}.{MINOR}.{PATCH}"
],
"ios/auth0_flutter.podspec": [
"= '{MAJOR}.{MINOR}.{PATCH}'"
]
},
"prebump": "flutter analyze",
Expand Down
23 changes: 11 additions & 12 deletions auth0_flutter/ios/auth0_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,21 @@
# Run `pod lib lint auth0_flutter.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'auth0_flutter'
s.version = ' 1.0.0-fa.0'
s.summary = 'A new flutter plugin project.'
s.description = <<-DESC
A new flutter plugin project.
DESC
s.homepage = 'http://example.com'
s.license = { :file => '../LICENSE' }
s.author = { 'Auth0' => '[email protected]' }
s.source = { :path => '.' }
s.name = 'auth0_flutter'
s.version = '1.0.1'
s.summary = 'Auth0 SDK for Flutter'
s.description = 'Auth0 SDK for Flutter Android and iOS apps.'
s.homepage = 'https://auth0.com'
s.license = { :file => '../LICENSE' }
s.author = { 'Auth0' => '[email protected]' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.platform = :ios, '12.0'

s.dependency 'Flutter'
s.dependency 'Auth0', '~> 2.3'
s.platform = :ios, '12.0'

# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = ['5.3', '5.4', '5.5', '5.6']
s.swift_version = ['5.3', '5.4', '5.5', '5.6', '5.7']
end

0 comments on commit f7d32fc

Please sign in to comment.