forked from instnt-inc/instnt-aries-vcx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding podspec file for cocoapods testing
- Loading branch information
1 parent
14ae6fa
commit ba70f75
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |