doc: add notes to enable 32bit only mode

This commit is contained in:
Sebastian Safari 2019-01-03 04:43:11 -08:00 committed by Saúl Ibarra Corretgé
parent 274b7148b0
commit ce01b31514
1 changed files with 13 additions and 0 deletions

View File

@ -33,6 +33,19 @@ dependencies {
}
```
Also, enable 32bit mode for react-native, since react-native only supports 32bit apps. (If you have a 64bit device, it will not run unless this setting it set)
```gradle
android {
...
defaultConfig {
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
...
```
### Build and use your own SDK artifacts/binaries
<details>