설치
Wepin ReactNative PIN Pad SDK를 설치하는 방법을 설명합니다.
Last updated
Was this helpful?
Was this helpful?
npm install @wepin/pin-rnnpm install @wepin/pin-rnnpm install react-native-device-info
# for ios
cd ios
pod installyarn add react-native-device-info
# for ios
cd ios
pod install// For Deep Link => RedirectScheme Format : wepin. + Wepin App ID
android.defaultConfig.manifestPlaceholders = [
'appAuthRedirectScheme': 'wepin.{{YOUR_WEPIN_APPID}}'
]<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>unique name</string>
<array>
<string>wepin + your Wepin app id</string>
</array>
</dict>
</array>post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_ENABLE_EXPLICIT_MODULES'] = 'NO'
end
end
end