Skip to content

Commit

Permalink
adding podspec file for cocoapods testing
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekinstnt committed Oct 25, 2024
1 parent 14ae6fa commit ba70f75
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions myvcx.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Pod::Spec.new do |s|
# Pod name
s.name = 'myvcx'

# Version and summary
s.version = '1.0.0'
s.summary = 'A description of myvcx framework.'

# The homepage for the pod
s.homepage = 'https://instnt.org/'

# The author information
s.author = { 'Your Name' => '[email protected]' }

# License for the pod
s.license = { :type => 'MIT', :file => 'LICENSE' }

# Add a dummy source since you're using a local framework
# s.source = { :git => 'https://github.com/your/repo.git', :tag => '1.0.0' } # Adjust with your actual repo


# Specify the source location for the ZIP file
s.source = { :http => 'https://github.com/instnt-inc/instnt-aries-vcx/releases/download/abhishek_GithubAction2/vcx.xcframework.zip' } # Replace with your ZIP file URL

# Specify the source files (i.e., the .swift files)
s.source_files = 'aries/agents/ios/ariesvcx/ariesvcx/Source/vcx.swift' # Replace with the actual path if necessary

s.platform = :ios, '17.0'

# Frameworks you want to link (if necessary)
# s.frameworks = 'vcx.xcframework'

#s.vendored_frameworks = 'vcx.xcframework'


end

0 comments on commit ba70f75

Please sign in to comment.