https://github.com/immobiliare/realflagsfirebase
RealFlags plugin for FirebaseRemoteConfig - https://firebase.google.com/docs/remote-config
https://github.com/immobiliare/realflagsfirebase
feature-flagging featureflags firebase
Last synced: about 1 month ago
JSON representation
RealFlags plugin for FirebaseRemoteConfig - https://firebase.google.com/docs/remote-config
- Host: GitHub
- URL: https://github.com/immobiliare/realflagsfirebase
- Owner: immobiliare
- Created: 2023-02-08T12:23:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-08T13:07:20.000Z (over 3 years ago)
- Last Synced: 2025-10-11T10:11:25.159Z (8 months ago)
- Topics: feature-flagging, featureflags, firebase
- Language: Swift
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RealFlagsFirebase
RealFlagsFirebase is a plugin for [RealFlags](https://github.com/immobiliare/RealFlags) which is a feature flagging framework made for Swift.
## Requirements
RealFlags can be installed on any platform which supports Swift 5.4+, including Windows and Linux. On Apple platform, the following configuration is required:
- Firebase 9.0.0+
- iOS 12+
- Xcode 12.5+
- Swift 5.4+
## Installation
To use RealFlagsFirebase in your project you can use Swift Package Manager (our primary choice) or CocoaPods.
### Swift Package Manager
Add it as a dependency in a Swift Package, and add it to your `Package.swift`:
```swift
dependencies: [
.package(url: "https://github.com/immobiliare/RealFlagsFirebase.git", from: "1.0.0")
]
```
And add it as a dependency of your target:
```swift
targets: [
.target(name: "MyTarget", dependencies: [
.product(name: "https://github.com/immobiliare/RealFlagsFirebase.git", package: "RealFlagsFirebase")
])
]
```
In Xcode 11+, you can also navigate to the File menu and choose Swift Packages -> Add Package Dependency..., then enter the repository URL and version details.
## Powered Apps
The amazing mobile team at ImmobiliareLabs created RealFlagsFirebase, the Tech dept at Immobiliare.it, the first real estate site in Italy.
We are currently using RealFlagsFirebase in all of our products.
**If you are using RealFlagsFirebase in your app [drop us a message](mailto://mobile@immobiliare.it)**.
## Support
We'd love for you to contribute to RealFlagsFirebase!
If you have questions about using RealFlagsFirebase, bugs, and enhancement, please feel free to reach out by opening a [GitHub Issue](https://github.com/immobiliare/RealFlagsFirebase/issues).
## License
RealFlagsFirebase is licensed under the MIT license.
See the [LICENSE](./LICENSE) file for more information.