Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Commit

Permalink
project settings and podspec changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKontosEU committed May 12, 2021
1 parent cab22a7 commit ee1e6a9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
iOSVoIPLib: 5d0a20228ab3f9bdcbb7e35903be4009bfa267b3
iOSVoIPLib: 2f55881766cf9aeb93e8be5e1f78142a42036e98
linphone-sdk: 91183cb3e3224d2d1a211357cd6a39d61636d17d
QuickTableViewController: 25e698de1546c2b829c543d91b64ebc6e884acfc
Swinject: ddf78b8486dd9b71a667b852cad919ab4484478e
Expand Down
2 changes: 1 addition & 1 deletion Example/iOSVoIPLib.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/* Begin PBXFileReference section */
059BFDD3A7B6FECD90EB2342 /* Pods_iOSVoIPLib_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_iOSVoIPLib_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
17AD4A56BAB50115AEA64458 /* Pods-iOSVoIPLib_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iOSVoIPLib_Example.debug.xcconfig"; path = "Target Support Files/Pods-iOSVoIPLib_Example/Pods-iOSVoIPLib_Example.debug.xcconfig"; sourceTree = "<group>"; };
387E13631CFDC82954474438 /* iOSVoIPLib.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = iOSVoIPLib.podspec; path = ../iOSVoIPLib.podspec; sourceTree = "<group>"; };
387E13631CFDC82954474438 /* iOSVoIPLib.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = iOSVoIPLib.podspec; path = ../iOSVoIPLib.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
5B084054B2EA811B7BCC8101 /* Pods-iOSVoIPLib_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iOSVoIPLib_Tests.debug.xcconfig"; path = "Target Support Files/Pods-iOSVoIPLib_Tests/Pods-iOSVoIPLib_Tests.debug.xcconfig"; sourceTree = "<group>"; };
5C92D9F025DEE1D2003019D1 /* iOSVoIPLib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = iOSVoIPLib.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5C92DA1725DEE3FB003019D1 /* iOSVoIPLib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = iOSVoIPLib.framework; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down
38 changes: 21 additions & 17 deletions iOSVoIPLib.podspec
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
Pod::Spec.new do |s|
s.name = 'iOSVoIPLib'
s.version = '0.1.0'
s.summary = 'Allow for easy implementation of SIP into a swift project.'

s.platform = :ios
s.ios.deployment_target = '11.3'
s.name = 'iOSVoIPLib'
s.summary = 'This library is an opinionated sip-wrapper, currently using Linphone as the base.'

s.version = '0.1.0'

s.license = { :type => 'AGPL', :file => 'LICENSE' }

s.author = { "Jeremy Norman" => "[email protected]", "Chris Kontos" => "[email protected]" }

s.homepage = 'https://gitlab.wearespindle.com/vialer/mobile/voip/ios-voip-lib'

s.source = { :git => 'https://github.com/open-voip-alliance/iOS-VoIP-Lib.git',
:tag => s.version.to_s }


s.description = <<-DESC
This library is an opinionated sip-wrapper, currently using Linphone as the base.
DESC

s.homepage = 'https://gitlab.wearespindle.com/vialer/mobile/voip/ios-voip-lib'
s.license = { :type => 'AGPL', :file => 'LICENSE' }
s.author = { 'jeremynorman89' => '[email protected]' }
s.source = { :git => 'https://github.com/open-voip-alliance/iOSVoIPLib.git', :tag => s.version.to_s }

s.ios.deployment_target = '11.3'

s.source_files = 'iOSVoIPLib/Classes/**/*'
s.source_files = 'iOSVoIPLib/Classes/**/*'

s.dependency 'linphone-sdk', '4.4.1'

s.swift_version = "5"

s.dependency 'linphone-sdk', '4.4.1'
end

0 comments on commit ee1e6a9

Please sign in to comment.