RCTVersion.m 857 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * @generated by scripts/bump-oss-version.js
  3. *
  4. * Copyright (c) Facebook, Inc. and its affiliates.
  5. *
  6. * This source code is licensed under the MIT license found in the
  7. * LICENSE file in the root directory of this source tree.
  8. */
  9. #import "RCTVersion.h"
  10. NSString* const RCTVersionMajor = @"major";
  11. NSString* const RCTVersionMinor = @"minor";
  12. NSString* const RCTVersionPatch = @"patch";
  13. NSString* const RCTVersionPrerelease = @"prerelease";
  14. NSDictionary* RCTGetReactNativeVersion(void)
  15. {
  16. static NSDictionary* __rnVersion;
  17. static dispatch_once_t onceToken;
  18. dispatch_once(&onceToken, ^(void){
  19. __rnVersion = @{
  20. RCTVersionMajor: @(0),
  21. RCTVersionMinor: @(63),
  22. RCTVersionPatch: @(4),
  23. RCTVersionPrerelease: [NSNull null],
  24. };
  25. });
  26. return __rnVersion;
  27. }