Skip to content

Commit 3bd6b30

Browse files
authored
docs: add guide to fix the broken android build on Expo Messaging App and update yarn.lock files (#2172)
* docs: add guide to fix the broken android build on Expo Messaging App and update yarn.lock files * docs: add reason for the fix
1 parent a6adb22 commit 3bd6b30

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

examples/ExpoMessaging/Readme.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,19 @@
3535

3636
```bash
3737
yarn android
38-
```
38+
```
39+
40+
**Note:**
41+
42+
If your Android build fails please add the following snippet on the `android/gradle.properties` to make it work.
43+
44+
```
45+
# Disabled hermes in favour of broken Android build due to the package `react-native-quick-sqlite`:
46+
# To Fix:
47+
# A problem occurred evaluating project ':react-native-quick-sqlite'.
48+
# > Cannot get property 'hermesEnabled' on extra properties extension as it does not exist
49+
hermesEnabled=true
50+
# disables the check for multiple instances for gesture handler
51+
# this is needed for react-native-gesture-handler to be both a devDep of core and be a dep on the expo sample app
52+
disableMultipleInstancesCheck=true
53+
```

0 commit comments

Comments
 (0)