Skip to content

Commit 7d4d903

Browse files
committed
podspecs for OneSignalCore Extension and Outcomes
1 parent 694c2ff commit 7d4d903

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

OneSignalCore.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = "OneSignalCore"
3+
s.version = "3.9.1"
4+
s.summary = "OneSignal's core library for mobile apps. This should only be used as a part of the OneSignal Pod"
5+
s.homepage = "https://onesignal.com"
6+
s.license = { :type => 'MIT', :file => 'LICENSE' }
7+
s.author = {"Josh Kasten" => "[email protected]" , "Elliot Mawby" => "[email protected]"}
8+
9+
s.source = { :git => "https://github.com/OneSignal/OneSignal-iOS-SDK.git", :tag => s.version.to_s }
10+
s.platform = :ios
11+
s.requires_arc = true
12+
13+
s.ios.vendored_frameworks = 'iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework'
14+
s.preserve_paths = 'iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework'
15+
16+
end

OneSignalExtension.podspec

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Pod::Spec.new do |s|
2+
s.name = "OneSignalExtension"
3+
s.version = "3.9.1"
4+
s.summary = "OneSignal's library for Notification Service Extensions in mobile apps"
5+
s.homepage = "https://onesignal.com"
6+
s.license = { :type => 'MIT', :file => 'LICENSE' }
7+
s.author = {"Josh Kasten" => "[email protected]" , "Elliot Mawby" => "[email protected]"}
8+
9+
s.source = { :git => "https://github.com/OneSignal/OneSignal-iOS-SDK.git", :tag => s.version.to_s }
10+
s.platform = :ios
11+
s.requires_arc = true
12+
s.dependency 'OneSignalCore'
13+
s.dependency 'OneSignalOutcomes'
14+
s.ios.vendored_frameworks = 'iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework'
15+
s.preserve_paths = 'iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework'
16+
17+
end

OneSignalOutcomes.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = "OneSignalOutcomes"
3+
s.version = "3.9.1"
4+
s.summary = "OneSignal's library for tracking user interactions in mobile apps. This should only be used as a part of the OneSignal Pod"
5+
s.homepage = "https://onesignal.com"
6+
s.license = { :type => 'MIT', :file => 'LICENSE' }
7+
s.author = {"Josh Kasten" => "[email protected]" , "Elliot Mawby" => "[email protected]"}
8+
9+
s.source = { :git => "https://github.com/OneSignal/OneSignal-iOS-SDK.git", :tag => s.version.to_s }
10+
s.platform = :ios
11+
s.requires_arc = true
12+
s.dependency 'OneSignalCore'
13+
s.ios.vendored_frameworks = 'iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework'
14+
s.preserve_paths = 'iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework'
15+
16+
end

0 commit comments

Comments
 (0)