Skip to content

Commit

Permalink
Bumped to Firebase 9.x for RealFlagsFirebase, fixed issue with xibs
Browse files Browse the repository at this point in the history
  • Loading branch information
malcommac committed Aug 9, 2022
1 parent 0f3562c commit 89103f0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
13 changes: 7 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import PackageDescription
let package = Package(
name: "RealFlags",
platforms: [
.iOS(.v13),
.macOS(.v10_12)
.iOS(.v13)
],
products: [
.library(name: "RealFlags", targets: ["RealFlags"]),
Expand All @@ -17,17 +16,19 @@ let package = Package(
.package(
name: "Firebase",
url: "https://github.com/firebase/firebase-ios-sdk.git",
from: "8.10.0"
from: "9.0.0"
)
],
targets: [
.target(
name: "RealFlags",
dependencies: [],
path: "RealFlags/Sources",
path: "RealFlags/Sources/RealFlags/Classes",
resources: [
.process("RealFlags/Classes/Browser/*.storyboard"),
.process("RealFlags/Classes/Browser/Cells/*.xib")
.process("Browser/FlagsBrowserController.storyboard"),
.process("Browser/Cells/FlagBrowserDataCell.xib"),
.process("Browser/Cells/FlagsBrowserDefaultCell.xib"),
.process("Browser/Cells/FlagsBrowserToggleCell.xib")
]
),
.target(
Expand Down
2 changes: 1 addition & 1 deletion RealFlags.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RealFlags"
s.version = "1.3.1"
s.version = "1.4.0"
s.summary = "Feature flagging framework for Swift"
s.homepage = "https://github.com/immobiliare/RealFlags.git"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
6 changes: 3 additions & 3 deletions RealFlagsFirebase.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RealFlagsFirebase"
s.version = "1.3.1"
s.version = "1.4.0"
s.summary = "Feature flagging framework for Swift: FirebaseRemoteConfig Data Provider"
s.homepage = "https://github.com/immobiliare/RealFlags.git"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand All @@ -16,7 +16,7 @@ Pod::Spec.new do |s|

s.source_files = 'RealFlagsFirebase/Sources/**/*.{h,m,swift}'
s.dependency 'RealFlags', s.version.to_s
s.dependency 'FirebaseCore', '~> 7.0'
s.dependency 'FirebaseRemoteConfig', '~> 7.0'
s.dependency 'FirebaseCore', '~> 9.0'
s.dependency 'FirebaseRemoteConfig', '~> 9.0'

end

0 comments on commit 89103f0

Please sign in to comment.