Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CodePush for FlutterIO

I already know about CodePush for Cordova & ReactNative.

Source : https://docs.microsoft.com/en-us/appcenter/distribution/codepush/

Is there any CodePush Solution for FlutterIO on Production Environment?

Or is it already supported as it already support ReactNative?

Thank You.

like image 652
Xnuxer Avatar asked Jan 09 '18 11:01

Xnuxer


People also ask

What is CodePush?

Since CodePush is a cloud service from AppCenter, the first thing you need to do is to create an account in the App Center dashboard. Next, create two apps, one per OS (iOS and Android). Make sure to select release type production and platform React Native.


2 Answers

It is technically possible for flutter to support code push as dart does have JIT needed for such feature. Technology is not the blocker and they might eventually roll out this feature.

Follow this for more informations and being updated on code push support for flutter.

like image 189
adnaan.zohran Avatar answered Sep 24 '22 13:09

adnaan.zohran


ReactNative and Flutter are not related, although they both use reactive concepts. ReactNative and Cordova both use javascript in the app side, Flutter uses compiled dart code. So support for ReactNative is not relevant for Flutter.

As you can see here there are currently no plans to support any form of dynamic updates.

like image 26
Rene Avatar answered Sep 26 '22 13:09

Rene