Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/smooth-wombats-drop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@portone/react-native-sdk': minor
---

expo-intent-launcher 의존성 제거 및 제3자 앱 시작 시 신규 task 생성
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ Node.js v18을 지원하며, Expo 51.0.38과 react-native-webview 13.8.6 환경

## 설치 (Expo 사용)

1. Expo CLI를 사용해 @portone/react-native-sdk와 의존성인 react-native-webview,
expo-intent-launcher을 설치합니다.
1. Expo CLI를 사용해 @portone/react-native-sdk와 의존성인 react-native-webview를 설치합니다.

```shell
npx expo install @portone/react-native-sdk react-native-webview expo-intent-launcher
npx expo install @portone/react-native-sdk react-native-webview
```

2. TypeScript를 사용하시는 경우 @portone/browser-sdk를 devDependencies에
Expand Down Expand Up @@ -54,12 +53,11 @@ yarn add -D @portone/browser-sdk

## 설치 (Expo 미사용)

1. @portone/react-native-sdk와 의존성인 react-native-webview,
expo-intent-launcher을 설치합니다.
1. @portone/react-native-sdk와 의존성인 react-native-webview를 설치합니다.

```shell
npm install --save @portone/react-native-sdk react-native-webview expo-intent-launcher
yarn add @portone/react-native-sdk react-native-webview expo-intent-launcher
npm install --save @portone/react-native-sdk react-native-webview
yarn add @portone/react-native-sdk react-native-webview
```

2. ios 서브디렉토리에서 pod를 사용해 react-native-webview에 필요한 네이티브
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,9 @@
},
"peerDependencies": {
"@portone/browser-sdk": "*",
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-webview": "*",
"expo-intent-launcher": "*"
"react-native-webview": "*"
},
"packageManager": "pnpm@9.11.0",
"jest": {
Expand Down
Loading