2018-11-07 12:24:35 -08:00
|
|
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
2018-08-21 08:52:24 -07:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
2019-04-12 14:23:13 -07:00
|
|
|
#include "flutter/shell/version/version.h"
|
2018-08-21 08:52:24 -07:00
|
|
|
|
2019-04-09 12:44:42 -07:00
|
|
|
namespace flutter {
|
2018-08-21 08:52:24 -07:00
|
|
|
|
|
|
|
|
const char* GetFlutterEngineVersion() {
|
2019-01-30 16:22:45 -08:00
|
|
|
return FLUTTER_ENGINE_VERSION;
|
2018-08-21 08:52:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* GetSkiaVersion() {
|
2019-01-30 16:22:45 -08:00
|
|
|
return SKIA_VERSION;
|
2018-08-21 08:52:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* GetDartVersion() {
|
2019-01-30 16:22:45 -08:00
|
|
|
return DART_VERSION;
|
2018-08-21 08:52:24 -07:00
|
|
|
}
|
|
|
|
|
|
2019-04-09 12:44:42 -07:00
|
|
|
} // namespace flutter
|