@jimrising/easymerchantsdk-react-native 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/workspace.xml +1 -1
- package/README.md +39 -1
- package/package.json +1 -1
package/.idea/workspace.xml
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dart.analysis.tool.window.visible": "false",
|
|
36
36
|
"git-widget-placeholder": "dev-branch",
|
|
37
37
|
"kotlin-language-version-configured": "true",
|
|
38
|
-
"last_opened_file_path": "/Users/appdev/
|
|
38
|
+
"last_opened_file_path": "/Users/appdev/Downloads/easymerchantsdk-react-native",
|
|
39
39
|
"show.migrate.to.gradle.popup": "false"
|
|
40
40
|
}
|
|
41
41
|
}]]></component>
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ To add the path of sdk in your project. Open your `package.json` file and inside
|
|
|
8
8
|
```json
|
|
9
9
|
"dependencies": {
|
|
10
10
|
...
|
|
11
|
-
"@jimrising/easymerchantsdk-react-native": "^1.1.
|
|
11
|
+
"@jimrising/easymerchantsdk-react-native": "^1.1.1"
|
|
12
12
|
},
|
|
13
13
|
```
|
|
14
14
|
or using command
|
|
@@ -128,6 +128,44 @@ var window: UIWindow?
|
|
|
128
128
|
pod 'easymerchantsdk', :path => '../node_modules/@jimrising/easymerchantsdk-react-native/ios'
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
+
## Inside Xcode Open Pods
|
|
132
|
+
### Manually Adding .xib Files to Copy Bundle Resources
|
|
133
|
+
|
|
134
|
+
#### Steps to Add SavedAccountTVC.xib & SavedCardsTVC.xib
|
|
135
|
+
|
|
136
|
+
Step 1 : Open Xcode and Navigate to the Pods Project
|
|
137
|
+
|
|
138
|
+
Step 2 : Inside your main Xcode workspace, locate and expand the Pods project.
|
|
139
|
+
|
|
140
|
+
Step 3 : Select the easymerchantsdk-easymerchantsdk Target
|
|
141
|
+
In the Project Navigator, find and select the easymerchantsdk-easymerchantsdk target.
|
|
142
|
+
|
|
143
|
+
Step 4 : Go to Build Phases
|
|
144
|
+
|
|
145
|
+
Step 5 : In the project settings, switch to the Build Phases tab.
|
|
146
|
+
|
|
147
|
+
Add .xib Files to Copy Bundle Resources
|
|
148
|
+
|
|
149
|
+
Expand the Copy Bundle Resources section.
|
|
150
|
+
|
|
151
|
+
Click the "+" button and select the following files:
|
|
152
|
+
|
|
153
|
+
SavedAccountTVC.xib &
|
|
154
|
+
SavedCardsTVC.xib
|
|
155
|
+
|
|
156
|
+
Click Add to confirm.
|
|
157
|
+
|
|
158
|
+
Verify and Rebuild
|
|
159
|
+
|
|
160
|
+
Ensure the .xib files appear in Copy Bundle Resources.
|
|
161
|
+
|
|
162
|
+
Clean the build folder using:
|
|
163
|
+
|
|
164
|
+
Shift + Command + K
|
|
165
|
+
|
|
166
|
+
Rebuild the project using:
|
|
167
|
+
|
|
168
|
+
Command + B
|
|
131
169
|
|
|
132
170
|
|
|
133
171
|
## How to call the sdk in `App.js`.
|