설치

요구사항

  • React Native version 0.71.8 이상

  • Android: API 버전 23 이상

  • iOS: API 버전 12.0 이상

해당 패키지는 Android, iOS 환경에서만 사용 가능합니다. Web, MacOS, Window, Linux 환경에서는 사용할 수 없습니다.

설치하기

Wepin React Native SDK 를 설치하는 방법을 설명합니다.

Wepin 설치하기

Wepin React Native SDK 는 npm 패키지로 설치 가능합니다.

npm install @wepin/login-rn

peerDependencies

npm install react-native-device-info

# for ios
cd ios
pod install

or

yarn add react-native-device-info

# for ios
cd ios 
pod install

react-native.config.js 설정

react-native.config.js 파일에 @wepin/storage-rn 경로를 설정해주어야 합니다.

const path = require('path');
module.exports = {
  dependencies: {
    '@wepin/storage-rn': {
      root: path.join(__dirname, './node_modules/@wepin/storage-rn'),
    },
  },
};

Last updated