Skip to content
This repository was archived by the owner on Jan 27, 2021. It is now read-only.

Commit 536faf8

Browse files
committed
Update readme with troubleshooting tips
1 parent 9a3f90f commit 536faf8

1 file changed

Lines changed: 40 additions & 1 deletion

File tree

README.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,43 @@ Implementation of Agora's SDK for Video Calling between users in a React Native
1414
- Execute `react-native link react-native-agora` and `react-native link react-native-vector-icons`.
1515
- Connect your device or start an AVD then run `react-native run-android` to start the app.
1616
- Enter a channel name and hit submit on the device.
17-
- Use the same channel on a different device, and that's it. You should have a video call going.
17+
- Use the same channel on a different device, and that's it. You should have a video call going.
18+
19+
## Troubleshooting
20+
21+
### debug.keystore
22+
23+
Error:
24+
25+
```
26+
Execution failed for task ':app:validateSigningDebug'.
27+
> Keystore file '/Agora-React-Native-Demo/android/app/debug.keystore' not found for signing config 'debug'.
28+
```
29+
30+
Fix:
31+
32+
```
33+
cd andoid/app
34+
keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000
35+
enter blank on all answers and confirm with 'y' on last question
36+
```
37+
38+
### iOS project
39+
40+
Error:
41+
42+
```
43+
Project does not build
44+
```
45+
46+
Fix:
47+
48+
```
49+
cd ios
50+
open AgoraDemoReactNative.xcodeproj
51+
```
52+
53+
Then in XCode:
54+
55+
File -> Project settings -> Change build system to 'legacy build system'
56+

0 commit comments

Comments
 (0)