Skip to content

Commit

Permalink
Update podspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
matux committed Apr 22, 2024
1 parent d7136d2 commit 1914207
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ let package = Package(
name: "RollbarCrash",
dependencies: [],
path: "RollbarNotifier/Sources/RollbarCrash",
resources: [.copy("PrivacyInfo.xcprivacy")],
cxxSettings: [
.define("GCC_ENABLE_CPP_EXCEPTIONS", to: "YES"),
.headerSearchPath("Monitors"),
Expand All @@ -53,7 +52,8 @@ let package = Package(
"RollbarCrash",
"RollbarReport"
],
path: "RollbarNotifier/Sources/RollbarNotifier"
path: "RollbarNotifier/Sources/RollbarNotifier",
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.target(
name: "RollbarDeploys",
Expand Down
6 changes: 1 addition & 5 deletions Rollbar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ Pod::Spec.new do |s|
s.public_header_files =
"RollbarNotifier/Sources/RollbarCrash/include/*.h",
"RollbarNotifier/Sources/RollbarNotifier/include/*.h"
s.resource_bundles = { ,
"RollbarCrash" => "RollbarNotifier/Sources/RollbarCrash/PrivacyInfo.xcprivacy",
"RollbarNotifier" => "RollbarNotifier/Sources/RollbarNotifier/PrivacyInfo.xcprivacy"
}
s.resource_bundles = { "RollbarNotifier" => "RollbarNotifier/Sources/RollbarNotifier/PrivacyInfo.xcprivacy" }
s.module_map =
"RollbarNotifier/Sources/RollbarCrash/include/module.modulemap",
"RollbarNotifier/Sources/RollbarNotifier/include/module.modulemap"
Expand All @@ -58,7 +55,6 @@ Pod::Spec.new do |s|
s.subspec 'Common' do |sp|
sp.source_files = "RollbarCommon/Sources/RollbarCommon/**/*.{h,m}"
sp.public_header_files = "RollbarCommon/Sources/RollbarCommon/include/*.h"
sp.resource_bundles = { "Rollbar" => "RollbarCommon/Sources/PrivacyInfo.xcprivacy" }
end

s.subspec 'AUL' do |sp|
Expand Down
1 change: 0 additions & 1 deletion RollbarCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Pod::Spec.new do |s|

s.source_files = "#{s.name}/Sources/#{s.name}/**/*.{h,m}"
s.public_header_files = "#{s.name}/Sources/#{s.name}/include/*.h"
s.resource_bundles = { "RollbarCommon" => "RollbarCommon/Sources/PrivacyInfo.xcprivacy" }
s.module_map = "#{s.name}/Sources/#{s.name}/include/module.modulemap"

s.framework = "Foundation"
Expand Down
1 change: 0 additions & 1 deletion RollbarCrash.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Pod::Spec.new do |s|
s.module_name = "RollbarCrash"
s.source_files = "RollbarNotifier/Sources/#{s.name}/**/*.{h,c,cpp,m}"
s.public_header_files = "RollbarNotifier/Sources/#{s.name}/include/*.h"
s.resource_bundles = { "RollbarCrash" => "RollbarNotifier/Sources/RollbarCrash/PrivacyInfo.xcprivacy" }
s.module_map = "RollbarNotifier/Sources/#{s.name}/include/module.modulemap"

s.framework = "Foundation"
Expand Down

0 comments on commit 1914207

Please sign in to comment.