How to fix this problem after install react-native-ble-plx.Is there any solution for direct react native installation instead of bridging native modules?
Asked
Active
Viewed 810 times
2 Answers
0
You need to follow the configuration process — without the 2. npx react-native link react-native-ble-plx
step as autolinking should work. Other steps are needed though.

Dariusz Seweryn
- 3,212
- 2
- 14
- 21
-
already follow these all configuration process – Majid Aziz Dec 30 '20 at 07:09
0
This fixed my issue:
- In android/build.gradle moved
maven { url 'https://www.jitpack.io' }
respository to bottom afterjcenter()
instead of beforejcenter()
- In Android Studio performed gradle sync
- Then executed
react-native run-android
.

FutureJJ
- 2,368
- 1
- 19
- 30