Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
version.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// FLUTTER_NOLINT: https://github.com/flutter/flutter/issues/68332
6
7#include "flutter/shell/version/version.h"
8
9namespace flutter {
10
13}
14
15const char* GetSkiaVersion() {
16 return SKIA_VERSION;
17}
18
19const char* GetDartVersion() {
20 return DART_VERSION;
21}
22
23} // namespace flutter
#define FLUTTER_ENGINE_VERSION
Definition embedder.h:70
const char * GetDartVersion()
Definition version.cc:19
const char * GetSkiaVersion()
Definition version.cc:15
const char * GetFlutterEngineVersion()
Definition version.cc:11