mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Added a new template `ReactNativeVersion.kt-template.js` to be used to generate the Kotlin template for Android. Updating also the set-rn-artifacts-version script to use this template instead of the Java one. ## Changelog: [INTERNAL] - Migrate ReactNativeVersion Android template to Kotlin Pull Request resolved: https://github.com/facebook/react-native/pull/49758 Test Plan: ```bash yarn test-android yarn android node ./scripts/releases/set-version.js 1000.0.0 ``` Reviewed By: huntie, rshest Differential Revision: D70486775 Pulled By: cortinico fbshipit-source-id: 5dd1e0e2ecf4d848dc24e6c47df243a1259ab559
39 lines
973 B
JavaScript
39 lines
973 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
/*::
|
|
import type {Version} from '../utils/version-utils';
|
|
*/
|
|
|
|
module.exports = ({version} /*: {version: Version} */) /*: string */ => `/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* ${'@'}generated by scripts/releases/set-version.js
|
|
*/
|
|
|
|
package com.facebook.react.modules.systeminfo
|
|
|
|
public object ReactNativeVersion {
|
|
@JvmField
|
|
public val VERSION: Map<String, Any?> = mapOf(
|
|
"major" to ${version.major},
|
|
"minor" to ${version.minor},
|
|
"patch" to ${version.patch},
|
|
"prerelease" to ${
|
|
version.prerelease != null ? `"${version.prerelease}"` : 'null'
|
|
}
|
|
)
|
|
}
|
|
`;
|