-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreenGuard.podspec
More file actions
19 lines (15 loc) · 887 Bytes
/
Copy pathscreenGuard.podspec
File metadata and controls
19 lines (15 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'ScreenGuard'
s.version = '1.0.0'
s.summary = 'A lightweight iOS package to detect screenshot events in your app.'
s.description = 'ScreenGuard helps developers detect screenshot events in their iOS applications. It provides easy-to-use methods to register screenshot notifications and prevent screenshots from being captured.'
s.homepage = 'https://github.com/LoviceSunuwar/screenGuard'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Lovice Sunuwar' => 'your.email@example.com' }
s.source = { :git => 'https://github.com/LoviceSunuwar/screenGuard.git', :tag => s.version.to_s }
s.platform = :ios, '13.0'
s.source_files = 'Sources/**/*.{swift}'
s.frameworks = 'UIKit','SwiftUI'
# Swift version
s.swift_version = '5.7'
end