Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
[install-expo-modules] add sdk 48 support (#4652)
Browse files Browse the repository at this point in the history
# Why

officially add sdk 48 support for install-expo-modules

# How

add sdk 48 to the version mappings

# Test Plan

```sh
$ npx react-native init RN071 --version 0.71
$ cd RN071
$ /path/to/expo/expo-cli/packages/install-expo-modules/build/index.js
```
  • Loading branch information
Kudo authored Feb 14, 2023
1 parent 79bf705 commit f17630e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ export interface VersionInfo {

export const ExpoVersionMappings: VersionInfo[] = [
// Please keep sdk versions in sorted order (latest sdk first)
{
expoSdkVersion: '48.0.0',
iosDeploymentTarget: '13.0',
reactNativeVersionRange: '>= 0.71.0',
},
{
expoSdkVersion: '47.0.0',
iosDeploymentTarget: '13.0',
Expand Down

0 comments on commit f17630e

Please sign in to comment.