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