updating pod spec

This commit is contained in:
Rody Davis 2019-10-28 11:08:37 -04:00
parent 6af3892d68
commit 9bb2103b74
4 changed files with 42 additions and 28 deletions

14
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Flutter",
"request": "launch",
"type": "dart",
"program": "example/lib/main.dart"
}
]
}

View File

@ -4,14 +4,14 @@
# #
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'flutter_sms' s.name = 'flutter_sms'
s.version = '0.0.1' s.version = '1.1.0'
s.summary = 'A new flutter plugin project.' s.summary = 'A Flutter plugin for Sending SMS on Android and iOS.'
s.description = <<-DESC s.description = <<-DESC
A new flutter plugin project. A new flutter plugin project.
DESC DESC
s.homepage = 'http://example.com' s.homepage = 'https://github.com/fluttercommunity/flutter_sms'
s.license = { :file => '../LICENSE' } s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' } s.author = { 'Rody Davis' => 'rody.davis.jr@gmail.com' }
s.source = { :path => '.' } s.source = { :path => '.' }
s.source_files = 'Classes/**/*' s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h' s.public_header_files = 'Classes/**/*.h'

View File

@ -2,7 +2,7 @@ name: flutter_sms
description: A Flutter plugin to Send SMS and MMS on iOS and Android. If iMessage is enabled it will send as iMessage on iOS. This plugin must be tested on a real device on iOS. description: A Flutter plugin to Send SMS and MMS on iOS and Android. If iMessage is enabled it will send as iMessage on iOS. This plugin must be tested on a real device on iOS.
version: 1.1.0 version: 1.1.0
author: Rody Davis <rody.davis.jr@gmail.com> author: Rody Davis <rody.davis.jr@gmail.com>
homepage: https://github.com/AppleEducate/plugins homepage: https://github.com/fluttercommunity/flutter_sms
maintainer: Rody Davis (@AppleEducate) maintainer: Rody Davis (@AppleEducate)