-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVPNclientEngine.podspec
More file actions
30 lines (28 loc) · 1.39 KB
/
VPNclientEngine.podspec
File metadata and controls
30 lines (28 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint vpnclient_engine_flutter.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'vpnclient_engine_flutter'
s.version = '0.0.1'
s.summary = 'VPNclient Engine Flutter plugin project.'
s.description = <<-DESC
VPNclient Engine Flutter plugin project.
DESC
s.homepage = 'http://vpnclient.click'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'admin@nativemind.net' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
#s.dependency 'VPNclientEngineIOS', :path => '../1/VPNclient-engine-ios'
s.platform = :ios, '12.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
# If your plugin requires a privacy manifest, for example if it uses any
# required reason APIs, update the PrivacyInfo.xcprivacy file to describe your
# plugin's privacy impact, and then uncomment this line. For more information,
# see https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
# s.resource_bundles = {'vpnclient_engine_flutter_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
end