Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
3b81fa1
feat(core): support for package swift
russellwheatley May 15, 2024
09aa361
chore: core example app updates
russellwheatley May 15, 2024
3ff39e5
fix: package integration requires exact package name
russellwheatley May 16, 2024
b9f7df9
ios updates
russellwheatley May 17, 2024
0f29a97
hide package.resolved
russellwheatley May 17, 2024
01adfca
chore: remove ios config
russellwheatley May 17, 2024
f17a719
format
russellwheatley May 17, 2024
04a671f
fix up the pigeon setup
russellwheatley May 17, 2024
5250627
license for Package.swift
russellwheatley May 17, 2024
e02ba2c
update preprocessor definitions for podspec and package.swift
russellwheatley May 17, 2024
a56af80
update code for LIBRARY_NAME & LIBRARY_VERSION
russellwheatley May 17, 2024
bd55dff
working version
russellwheatley May 17, 2024
ea62464
Merge branch 'master' into spm-core-2
russellwheatley May 22, 2024
5ae50bf
works on `flutter run` but not in Xcode
russellwheatley May 23, 2024
5a2ede9
hard code lib versions
russellwheatley May 23, 2024
f55f0c6
format
russellwheatley May 23, 2024
c4ea595
move macos
russellwheatley May 23, 2024
6a73e6a
fix symlink
russellwheatley May 23, 2024
f503c29
Discard changes to packages/firebase_core/firebase_core/ios/firebase_…
russellwheatley May 23, 2024
d2adbef
update core ios podspec after mistakenly reverting changes
russellwheatley May 24, 2024
41f2321
fix: macOS.podspec header/source files
russellwheatley May 24, 2024
2b1ebe7
ci: integrationt test for SPM firebase_core
russellwheatley May 24, 2024
764bb5f
update integration test
russellwheatley May 24, 2024
b520a67
no-codesign
russellwheatley May 24, 2024
7cc820b
pod deintegrate
russellwheatley May 24, 2024
a9d02ad
check build is successful as well
russellwheatley May 24, 2024
31c3935
update Package.swift with ability to get versions dynamically
russellwheatley May 24, 2024
4b78c08
rm unused output
russellwheatley May 24, 2024
11d3ee6
get exitcode
russellwheatley May 24, 2024
e01ffdd
macos package swift
russellwheatley May 28, 2024
7d3d225
rm macos from iOS package swift
russellwheatley May 28, 2024
5d95766
ci: swift integration into own shell script + macos build
russellwheatley May 28, 2024
df77338
optional include for macOS release
russellwheatley May 28, 2024
7613444
update swift script
russellwheatley May 28, 2024
1329b2e
debug script
russellwheatley May 28, 2024
a021747
update macos test
russellwheatley May 28, 2024
a3c7a66
incorrect mac path
russellwheatley May 28, 2024
b9379b4
stop exiting script
russellwheatley May 28, 2024
6c6d828
Merge branch 'master' into spm-core-2
russellwheatley May 31, 2024
95ade96
Apply suggestions from code review
russellwheatley Sep 4, 2024
8100b13
chore(core): bump ios version for swift
russellwheatley Sep 4, 2024
9ca913f
Merge branch 'main' into spm-core-2
russellwheatley Sep 4, 2024
1eaa3d1
chore(core): bump minimum macOS version
russellwheatley Sep 4, 2024
15a4d36
Merge branch 'main' into spm-core-2
russellwheatley Sep 11, 2024
0107af0
test: clean up disk space on macOS runner
russellwheatley Sep 11, 2024
0fb8313
test: further clean up
russellwheatley Sep 11, 2024
3fcaeb1
test: remove swift clean up
russellwheatley Sep 11, 2024
4d81d07
test: remove further clean up
russellwheatley Sep 11, 2024
758c3cb
chore(core): move to iOS 13 for core swift
russellwheatley Sep 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(core): move to iOS 13 for core swift
  • Loading branch information
russellwheatley committed Sep 12, 2024
commit 758c3cbaa17885549f1b43cc0814f188a2b0c325
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ guard let firebase_sdk_version = Version(firebase_sdk_version_string) else {
let package = Package(
name: "firebase_core",
platforms: [
.iOS("12.0"),
.iOS("13.0"),
],
products: [
.library(name: "firebase-core", targets: ["firebase_core"]),
Expand Down
Loading