mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
- Moved versions from shell to common - versions singleton contains all the required versions.
22 lines
441 B
C++
22 lines
441 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.
|
|
|
|
#include "flutter/common/version/version.h"
|
|
|
|
namespace blink {
|
|
|
|
const char* GetFlutterEngineVersion() {
|
|
return FLUTTER_ENGINE_VERSION;
|
|
}
|
|
|
|
const char* GetSkiaVersion() {
|
|
return SKIA_VERSION;
|
|
}
|
|
|
|
const char* GetDartVersion() {
|
|
return DART_VERSION;
|
|
}
|
|
|
|
} // namespace blink
|