-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
robot-divkit
committed
Nov 13, 2023
1 parent
ba65588
commit 210aef7
Showing
15 changed files
with
158 additions
and
18 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
public enum DivKitInfo { | ||
public static let version = "28.9.0" | ||
public static let version = "28.10.0" | ||
} |
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
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
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
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
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
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
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
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
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,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DivKit' | ||
s.version = '28.10.0' | ||
s.summary = 'DivKit framework' | ||
s.description = 'DivKit is a backend-driven UI framework' | ||
s.homepage = 'https://divkit.tech' | ||
|
||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { 'divkit' => 'divkit@yandex-team.ru' } | ||
s.source = { :git => 'https://github.com/divkit/divkit-ios.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.7' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '11.0' } | ||
|
||
s.dependency 'DivKit_LayoutKit', s.version.to_s | ||
s.dependency 'DivKit_Serialization', s.version.to_s | ||
s.dependency 'VGSLCommonCore', '~> 2.3' | ||
s.dependency 'VGSLNetworking', '~> 2.3' | ||
|
||
s.source_files = [ | ||
'DivKit/**/*' | ||
] | ||
end |
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,22 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DivKitExtensions' | ||
s.version = '28.10.0' | ||
s.summary = 'DivKit framework extensions' | ||
s.description = 'Part of DivKit framework' | ||
s.homepage = 'https://divkit.tech' | ||
|
||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { 'divkit' => 'divkit@yandex-team.ru' } | ||
s.source = { :git => 'https://github.com/divkit/divkit-ios.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.7' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '11.0' } | ||
|
||
s.dependency 'DivKit', s.version.to_s | ||
|
||
s.source_files = [ | ||
'DivKitExtensions/**/*' | ||
] | ||
end |
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,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DivKit_LayoutKit' | ||
s.module_name = 'LayoutKit' | ||
s.version = '28.10.0' | ||
s.summary = 'Part of DivKit framework' | ||
s.description = 'Part of DivKit framework' | ||
s.homepage = 'https://divkit.tech' | ||
|
||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { 'divkit' => 'divkit@yandex-team.ru' } | ||
s.source = { :git => 'https://github.com/divkit/divkit-ios.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.7' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '11.0' } | ||
|
||
s.dependency 'DivKit_LayoutKitInterface', s.version.to_s | ||
s.dependency 'VGSLCommonCore', '~> 2.3' | ||
|
||
s.source_files = [ | ||
'LayoutKit/LayoutKit/**/*' | ||
] | ||
end |
25 changes: 25 additions & 0 deletions
25
Specs/DivKit_LayoutKitInterface/28.10.0/DivKit_LayoutKitInterface.podspec
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,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DivKit_LayoutKitInterface' | ||
s.module_name = 'LayoutKitInterface' | ||
s.version = '28.10.0' | ||
s.summary = 'Part of DivKit framework' | ||
s.description = 'Part of DivKit framework' | ||
s.homepage = 'https://divkit.tech' | ||
|
||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { 'divkit' => 'divkit@yandex-team.ru' } | ||
s.source = { :git => 'https://github.com/divkit/divkit-ios.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.7' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '11.0' } | ||
|
||
s.dependency 'VGSLBase', '~> 2.3' | ||
s.dependency 'VGSLBaseTiny', '~> 2.3' | ||
s.dependency 'VGSLBaseUI', '~> 2.3' | ||
|
||
s.source_files = [ | ||
'LayoutKit/Interface/**/*' | ||
] | ||
end |
23 changes: 23 additions & 0 deletions
23
Specs/DivKit_Serialization/28.10.0/DivKit_Serialization.podspec
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,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DivKit_Serialization' | ||
s.module_name = 'Serialization' | ||
s.version = '28.10.0' | ||
s.summary = 'Part of DivKit framework' | ||
s.description = 'Part of DivKit framework' | ||
s.homepage = 'https://divkit.tech' | ||
|
||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { 'divkit' => 'divkit@yandex-team.ru' } | ||
s.source = { :git => 'https://github.com/divkit/divkit-ios.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.7' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '11.0' } | ||
|
||
s.dependency 'VGSLCommonCore', '~> 2.3' | ||
|
||
s.source_files = [ | ||
'Serialization/**/*' | ||
] | ||
end |