I have been using Firebase Remote Config to dynamically update some features in my Flutter apps. I used it, for instance to change my app's theme depending on the user's region. Then I discovered ShoreBird which is a CodePush solution for flutter apps. I have read few blogs about it, but I still don't get a real sense of these concepts...
What is ShoreBird in flutter and how does it differs from Firebase Remote Config?
574 Views Asked by Baimam Boukar At
1
There are 1 best solutions below
Related Questions in FLUTTER
- Bug report: Issue building flutter on a mac
- Is there a way to control where a Text widget overflow occurs (how many lines)?
- How to save to local storage using Flutter?
- How do you use a TextPainter to draw text?
- Passing command line arguments to a flutter app
- IconButton calling setState during onPressed shows no ripple effect
- What would be a good way for a widget to take 1/3 of the screen?
- How can I test a TextPainter?
- How can I inherit a StatefulWidget's State?
- Life cycle in flutter
- Preloading local image assets in Flutter
- Flutter app not able to run in IntelliJ
- Is there a way to call specific code right before the app is killed or moves to the background?
- How can I layout widgets based on the size of the parent?
- Multi-line TextField in Flutter
Related Questions in FIREBASE
- Firebase facebook authentication not working
- Add @JsonAutoDetect to third party lib and firebase Java lib
- firebase-import timing out?
- Understanding Firebase orderByChild
- Wait until Firebase retrieves data
- Firebase logout show Permission denied error.
- angular $firebaseArrray: difference between controller and directive
- Firebase: combine filtering with ordering in swift
- AngularJS - Firebase - Promise Error
- How to get simple list of devices on a Nest account using Firebase in Android?
- Event-Driven(Real - Time) mobile set-up suggestions
- How do you nest two of Polymer's firebase-collection elements inside dom-repeat?
- AngularFire Watch and Retrieve Item Key
- Firebase and AngularFire - $add in a array - unexpected behaviour
- Saving an html object to firebase
Related Questions in FIREBASE-REMOTE-CONFIG
- Fetching configuration based on the user properties using Firebase Remote Config
- How to enable particular feature in android app for specified users based on city using A/B Testing
- Is there a way to override Firebase Remote Config's Region/Country
- Firebase Remoteconfig fetch crashes Android app
- Does Firebase RemoteConfig keep fetching?
- Do defaults need to be supplied for Firebase RemoteConfig?
- How long does Firebase throttle you?
- Application crashing on some devices because "Default FirebaseApp is not initialized in this process"
- FirebaseRemoteConfig does not use options from FirebaseApp.initializeApp()
- Getting all possible values for a key in Firebase's Remote Config
- Firebase Remote Config long request response time issue
- How to define firebase-remote-config parameters based on app version
- How to download google-services.json file from firebase for Ionic?
- iOS Swift: Firebase Remote Config fetch values
- How to target app version in Firebase RemoteConfig for some build version and greater using contains regex in conditions?
Related Questions in SHOREBIRD
- Flutter - CodeMagic - Shorebird - iOS Build Problem
- Error install Shorebird using cURL command
- Shorebird flutter code push cannot be installed in my Linux ubuntu 22.04.2 LTS
- Flutter shorebird abort every command
- Error when running Shorebird login ( Failed to create server socket (OS Error: Failed to start accept), address = localhost, port = 0 )
- Compatibility of Shorebird In-App Update with Multiple Exported Apps from a Single Project
- Why shorebird not finding file libapp.so?
- Shorebird release ios-alpha fails
- What is ShoreBird in flutter and how does it differs from Firebase Remote Config?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Both Firebase Remote Config and Shorebird Code Push allow you to modify an app's behavior after the app has been installed on the user's device. The difference is in how you modify this behavior, and it's hinted at in each product's name.
With Firebase Remote Config you pre-define certain configuration variables in your code, whose value you can then control from the server after the app has been installed on the user's device. You can send one specific updated value to all users, or you can target specific values to specific dynamic groups of users.
Shorebird's Code Push on the other hand allows you to change the actual code that runs on the user's device after the app has been installed. You can change anything about the app that you're willing to write the code for, and then push that updated code to all your user's devices with a single command.
So while both can be used to change the behavior of the app after it's been installed, the way you go about it is quite different. In the code of Code push you update the code in your regular development environment, and then push that updated code to the devices of your user. In the case of Remote Config you've pre-defined the variables that control the behavior, and you then change the behavior through the Firebase console or the REST API.