-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestGithubCI.podspec
22 lines (19 loc) · 1.03 KB
/
TestGithubCI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "TestGithubCI"
spec.version = "1.4.3"
spec.summary = "Testing Github actions for IOS SDK build and deployment features"
spec.description = <<-DESC
Testing Github actions for IOS SDK build and deployment features. Includes a XCFramework and a sample app that calls function in it.
DESC
spec.homepage = "https://github.com/heguanyu/TestGithubCI"
spec.documentation_url = "https://github.com/heguanyu/TestGithubCI/blob/main/README.md"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
spec.author = { "Guanyu He" => "[email protected]" }
spec.platform = :ios
spec.ios.deployment_target = "12.0"
spec.swift_version = "5.0"
spec.source = {
:http=> "https://github.com/heguanyu/TestGithubCIPubicRepo/raw/main/binaries/#{spec.version}/TestXCFramework-#{spec.version}.zip"
}
spec.vendored_frameworks = "TestXCFramework-#{spec.version}/TestXCFramework.xcframework"
end