Skip to content

Commit

Permalink
Use deps without bitcode
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Salnikov committed Nov 13, 2024
1 parent b3d0c9b commit debc98a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ let package = Package(name: "VKVideoPlayer", platforms: [.iOS(.v14)],
.binaryTarget(name: "OVKit", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/OVKit/5.36/OVKit.xcframework.zip", checksum: "1a5ca834b55b26fc78d949da3d284b565e001216aea2c862fd80086e98d3c164"),
.binaryTarget(name: "OVKitStatistics", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/OVKitStatistics/1.23/OVKitStatistics.xcframework.zip", checksum: "0a3165e00fa866a0764577eb9aeefc7b93322a8681239a2d51509464d9b55c34"),
.binaryTarget(name: "OVPlayerKit", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/OVPlayerKit/3.76/OVPlayerKit.xcframework.zip", checksum: "015c6f9c647c1da9436c70f68fe3d2902c1af9c512f33942e032e2fa7a6da127"),
.binaryTarget(name: "WebM", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/WebM/1.2/WebM.xcframework.zip", checksum: "a6d0946a01036e3f09bc09b737021b778351bfc243bd48b315273adc79b73a50"),
.binaryTarget(name: "WebM", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/WebM/1.2.1/WebM.xcframework.zip", checksum: "a6d0946a01036e3f09bc09b737021b778351bfc243bd48b315273adc79b73a50"),
.binaryTarget(name: "VKOpus", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/VKOpus/1.0/VKOpus.xcframework.zip", checksum: "6ac2419048a1479f94d1d9ce434735fad9190dae2b087bad0f1581530013508f"),
.binaryTarget(name: "VPX", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/VPX/1.2/VPX.xcframework.zip", checksum: "34fbd586d33a83a95942a507a39e7b2856b12c6a1e1f91de3400548e28ac39e3"),
.binaryTarget(name: "VPX", url: "https://artifactory-external.vkpartner.ru/artifactory/vk-ios-sdk/VPX/1.2.1/VPX.xcframework.zip", checksum: "34fbd586d33a83a95942a507a39e7b2856b12c6a1e1f91de3400548e28ac39e3"),
]
)
)
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ target 'PlayerDemo' do
pod 'OVKit', :podspec => "#{artifactory_url}/OVKit/5.36/OVKit.podspec", :inhibit_warnings => true
pod 'OVKitStatistics', :podspec => "#{artifactory_url}/OVKitStatistics/1.23/OVKitStatistics.podspec", :inhibit_warnings => true
pod 'OVPlayerKit', :podspec => "#{artifactory_url}/OVPlayerKit/3.76/OVPlayerKit.podspec", :inhibit_warnings => true
pod 'WebM', :podspec => "#{artifactory_url}/WebM/1.2/WebM.podspec", :inhibit_warnings => true
pod 'WebM', :podspec => "#{artifactory_url}/WebM/1.2.1/WebM.podspec", :inhibit_warnings => true
pod 'VKOpus', :podspec => "#{artifactory_url}/VKOpus/1.0/VKOpus.podspec", :inhibit_warnings => true
pod 'VPX', :podspec => "#{artifactory_url}/VPX/1.2/VPX.podspec", :inhibit_warnings => true
pod 'VPX', :podspec => "#{artifactory_url}/VPX/1.2.1/VPX.podspec", :inhibit_warnings => true
end

0 comments on commit debc98a

Please sign in to comment.