mirror of
https://github.com/rive-app/rive-ios.git
synced 2026-01-18 17:11:28 +01:00
It appears `NSPrivacyCollectionDataTypes` is a required field in the privacy manifest. Since we don't collect any data in our runtimes, I have left the data types array empty. Reference: https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests?language=objc Diffs= de0eb61fe Add NSPrivacyCollectionDataTypes to privacy manifest (#7242) Co-authored-by: Maxwell Talbot <talbot.maxwell@gmail.com> Co-authored-by: Philip Chung <philterdesign@gmail.com>
39 lines
2.2 KiB
Ruby
39 lines
2.2 KiB
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = "RiveRuntime"
|
|
spec.version = "5.11.2"
|
|
spec.summary = "iOS SDK to render Rive animations"
|
|
spec.description = "Rive is a real-time interactive design and animation tool. Use our collaborative editor to create motion graphics that respond to different states and user inputs. Then load your animations into apps, games, and websites with our lightweight open-source runtimes."
|
|
spec.homepage = "https://github.com/rive-app/rive-ios"
|
|
spec.license = { :type => "MIT", :text => <<-LICENSE
|
|
Copyright (c) 2020-2022 Rive
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
LICENSE
|
|
}
|
|
spec.authors = { "Luigi Rosso" => "luigi@rive.app" }
|
|
spec.ios.deployment_target = '14.0'
|
|
spec.osx.deployment_target = '13.1'
|
|
spec.swift_version = '5.0'
|
|
spec.source = {
|
|
:http => "https://github.com/rive-app/rive-ios/releases/download/5.11.2/RiveRuntime.xcframework.zip",
|
|
}
|
|
spec.ios.vendored_frameworks = 'RiveRuntime.xcframework'
|
|
spec.osx.vendored_frameworks = 'RiveRuntime.xcframework'
|
|
spec.resource_bundles = {'runtime_ios_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
|
|
end |