mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
In an upcoming patch, we'll enable enforcement that all FLUTTER_NOLINT comments include an issue link. This migrates the remaining uses to that format. Bug: https://github.com/flutter/flutter/issues/68273
24 lines
512 B
C++
24 lines
512 B
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// FLUTTER_NOLINT: https://github.com/flutter/flutter/issues/68332
|
|
|
|
#include "flutter/shell/version/version.h"
|
|
|
|
namespace flutter {
|
|
|
|
const char* GetFlutterEngineVersion() {
|
|
return FLUTTER_ENGINE_VERSION;
|
|
}
|
|
|
|
const char* GetSkiaVersion() {
|
|
return SKIA_VERSION;
|
|
}
|
|
|
|
const char* GetDartVersion() {
|
|
return DART_VERSION;
|
|
}
|
|
|
|
} // namespace flutter
|