From c984e6e38aecb98264b2b461157fc3b02aaea959 Mon Sep 17 00:00:00 2001 From: Kjuly Date: Sun, 10 Dec 2023 21:40:34 +0800 Subject: [PATCH] Add KYNearbyService.podspec --- KYNearbyService.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 KYNearbyService.podspec diff --git a/KYNearbyService.podspec b/KYNearbyService.podspec new file mode 100644 index 0000000..9ec6aab --- /dev/null +++ b/KYNearbyService.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |spec| + spec.name = "KYNearbyService" + spec.version = "1.0.1" + spec.summary = "A service for nearby discovery and communication." + spec.license = "MIT" + spec.source = { :git => "https://github.com/Kjuly/KYNearbyService.git", :tag => spec.version.to_s } + spec.homepage = "https://github.com/Kjuly/KYNearbyService" + spec.screenshots = "https://raw.githubusercontent.com/Kjuly/preview/main/KYNearbyService/01.png", "https://raw.githubusercontent.com/Kjuly/preview/main/KYNearbyService/Mac_01.png" + + spec.author = { "Kjuly" => "dev@kjuly.com" } + spec.social_media_url = "https://twitter.com/kJulYu" + + spec.ios.deployment_target = "15.5" + spec.osx.deployment_target = "13.0" + + spec.swift_version = '5.0' + + spec.source_files = "KYNearbyService" + spec.exclude_files = "KYNearbyService/KYNearbyService.docc" + + spec.requires_arc = true + + spec.dependency "KYLogger", "~> 1.0" +end