Skip to content

Commit e59b04f

Browse files
committed
docs: update readme
1 parent ef58f27 commit e59b04f

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,25 @@ And you're done 🎉!
319319
If you encounter any other issues, you can see the list of solved issues [here](https://github.com/talsec/Free-RASP-ReactNative/issues?q=is%3Aissue+is%3Aclosed), or open up a [new one](https://github.com/talsec/Free-RASP-ReactNative/issues?q=is%3Aissue+is%3Aopen).
320320

321321
# Using Expo SDK
322-
freeRASP for React Native is bare React Native plugin. When installing freeRASP into a project that uses Expo SDK, there may be extra configuration needed:
322+
freeRASP for React Native is bare React Native plugin. When installing freeRASP into a project that uses Expo SDK, there may be extra configuration needed. We provide plugin config that sets the dependencies automatically. It is recommended to use the plugin config. However, manual setup is also possible.
323+
324+
## Plugin config setup
325+
Add the plugin config into your `app.json` and specify the `minSdkVersion` (use at least 23):
326+
```json
327+
"plugins": [
328+
[
329+
"freerasp-react-native/app.plugin.js",
330+
{
331+
"android": {
332+
"minSdkVersion": "23"
333+
}
334+
}
335+
]
336+
],
337+
```
338+
323339

340+
## Manual setup
324341
### 1. Increase minSdkVersion
325342

326343
This can be done in two ways:

0 commit comments

Comments
 (0)