DEV Community

Cover image for HarmonyOS Flutter Repository Stops Updates
shaohushuo
shaohushuo

Posted on

HarmonyOS Flutter Repository Stops Updates

Stop Updates

Friends who are familiar with Flutter Harmony development should know that Flutter 3.7.12 Harmony SDK has been released in the open source Harmony community for almost a year. The Harmony adaptation of Flutter 3.22.x has been provided by the Harmony Commando Repository. Recently, some friends reported that it has not stopped updating for more than 2 months, and many people thought that maintenance has stopped.

This is not the case.

Migration and merging

Flutter's Harmony adaptation work has been ongoing. The article Harmony Flutter Practice: 15-Flutter Engine Impeller Harmonyization, Performance Optimization and Future details the adaptation work content and future plans. The author mentioned in the previous article The original open source Harmony warehouse stopped updating that with the collective migration of the open source Harmony warehouse to gitcode, the 3.22.x version of Flutter SDK maintained by the Harmony Commando has also been merged into the Open Source Harmony Flutter Main Repository, and currently exists in the form of branch 3.22.0-ohos.

So far, the initial integration of Flutter Harmony has been completed, and two major versions are maintained simultaneously using one repository.

Summary Review

Flutter Harmony SDK is still active, and the last update was 4 days ago. If you need to use FVM to install the 3.22 version of the SDK, you can use the following command:

git clone -b 3.22.0-ohos https://gitcode.com/openharmony-sig/flutter_flutter.git custom_3.22.0
Enter fullscreen mode Exit fullscreen mode

If you need to use FVM to install the 3.7.12 version of the SDK, you can use the following command:

git clone -b br_3.7.12-ohos-1.0.6 https://gitcode.com/openharmony-sig/flutter_flutter.git custom_3.7.12
Enter fullscreen mode Exit fullscreen mode

The following are all the warehouse addresses related to Flutter Harmony:

For other third-party libraries under gitee/openharmony-sig, just replace the domain name, such as flutter inappwebview migrated to https://gitcode.com/openharmony-sig/flutter_inappwebview

In addition, some friends are using Flutter 3.7.12 version, then the SDK also needs to switch the source address, just change the domain name.

Top comments (0)