-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIKitViewBuilder.podspec
More file actions
19 lines (19 loc) · 972 Bytes
/
UIKitViewBuilder.podspec
File metadata and controls
19 lines (19 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |c|
c.name = 'UIKitViewBuilder'
c.version = '1.1.2'
c.summary = 'SwiftUI framework to integrate UIView, UITableViewCell, and UICollectionViewCell components.'
c.description = <<-DESC
UIKitViewBuilder is a powerful Swift framework designed to convert any UIView, UITableViewCell,
and UICollectionViewCell into your SwiftUI view. It bridges the gap between UIKit and SwiftUI,
allowing for seamless integration while maintaining performance and flexibility.
DESC
c.homepage = 'https://github.com/sonmbol/UIKitViewBuilder'
c.license = 'MIT'
c.author = { 'Ahmed Suliman' => 'dev.a7med95@gmail.com' }
c.source = { :git => 'https://github.com/sonmbol/UIKitViewBuilder.git', :tag => c.version.to_s }
c.ios.deployment_target = '14.0'
c.swift_version = ['5.0']
c.source_files = 'Sources/**/*'
c.frameworks = "UIKit", "SwiftUI"
c.cocoapods_version = '>= 1.13.0'
end