You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,14 @@ React Native Indy SDK wrapper.
5
5
## Installation
6
6
7
7
with npm:
8
-
`$ npm install rn-indy-sdk --save`
8
+
`$ npm install indy-sdk-react-native --save`
9
9
10
10
with Yarn:
11
-
`$ yarn add rn-indy-sdk`
11
+
`$ yarn add indy-sdk-react-native`
12
12
13
13
Link (for React Native lower than 0.60)
14
14
15
-
`$ react-native link rn-indy-sdk`
15
+
`$ react-native link indy-sdk-react-native`
16
16
17
17
## Android
18
18
@@ -126,6 +126,7 @@ public class MainActivity extends ReactActivity {
126
126
## iOS
127
127
128
128
1. Install CocoaPods dependencies:
129
+
129
130
```
130
131
pod install --project-directory=ios/
131
132
```
@@ -139,14 +140,14 @@ ios/Pods/
139
140
!ios/Pods/Frameworks
140
141
```
141
142
142
-
4. Add `Indy.framework` as dependency into your project. Open `.xcworkspace` file in Xcode and in your project settings, tab General, section Frameworks, Libraries, and Embedded Content, click on plus. Then select Add Other -> Add files... and navigate to `Indy.framework` file on your disk.
143
+
4. Add `Indy.framework` as dependency into your project. Open `.xcworkspace` file in Xcode and in your project settings, tab General, section Frameworks, Libraries, and Embedded Content, click on plus. Then select Add Other -> Add files... and navigate to `Indy.framework` file on your disk.
143
144
144
-
> Beware that the Indy SDK repository does not have the "Build Libraries for Distribution" enabled by default. If that setting is disabled the version of Swift your project uses must be the same as the version of Swift used to compile `Indy.framework`. From Swift 5.0 onwards, building the library with that setting enabled will allow to use an `Indy.framework` build that is compiled with a different version of Swift as your project. See https://stackoverflow.com/a/63305234/10552895 for more info.
145
+
> Beware that the Indy SDK repository does not have the "Build Libraries for Distribution" enabled by default. If that setting is disabled the version of Swift your project uses must be the same as the version of Swift used to compile `Indy.framework`. From Swift 5.0 onwards, building the library with that setting enabled will allow to use an `Indy.framework` build that is compiled with a different version of Swift as your project. See https://stackoverflow.com/a/63305234/10552895 for more info.
0 commit comments