Drop link to engine.version which is no longer checked in. (#162497)

The engine SHA is the same as the Flutter SHA since they were merged in
the monorepo.
This commit is contained in:
Robert Ancell 2025-02-10 17:43:36 +13:00 committed by GitHub
parent 5156de731b
commit 99690cb8c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,6 @@ This is a very low level API and is not suitable for beginners.
* The binary is not stripped and contains debug information. Embedders are advised to strip the binary before deployment.
* The Windows buildbot uploads the artifacts to a known location. Access it here [`https://storage.googleapis.com/flutter_infra_release/flutter/FLUTTER_HASH/windows-x64/windows-x64-embedder.zip`](https://storage.googleapis.com/flutter_infra_release/flutter/e672b006cb34c921db85b8e2f482ed3144a4574b/windows-x64/windows-x64-embedder.zip)
* Replace `FLUTTER_HASH` with the SHA of the Flutter commit you wish to use.
* You can also obtain that SHA from the [`engine.version`](https://github.com/flutter/flutter/blob/main/bin/internal/engine.version) file in your Flutter framework checkout. This allows you to exactly match the engine version with the Flutter framework version.
* The Flutter engine API has no platform specific dependencies, has a stable ABI and is available in its entirety in a [single C header file available here](https://github.com/flutter/engine/blob/master/engine/src/flutter/shell/platform/embedder/embedder.h).
* To use as a guide, you may use [this example embedder that uses GLFW](https://github.com/flutter/engine/blob/master/engine/src/flutter/examples/glfw/FlutterEmbedderGLFW.cc) for window management and rendering.