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// FLUTTER_NOLINT
5
6#include "flutter/shell/version/version.h"
7
8namespace flutter {
9
10const char* GetFlutterEngineVersion() {
11 return FLUTTER_ENGINE_VERSION;
12}
13
14const char* GetSkiaVersion() {
15 return SKIA_VERSION;
16}
17
18const char* GetDartVersion() {
19 return DART_VERSION;
20}
21
22} // namespace flutter
23