doc: add notes to enable 32bit only mode
This commit is contained in:
parent
274b7148b0
commit
ce01b31514
|
@ -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
|
### Build and use your own SDK artifacts/binaries
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
Loading…
Reference in New Issue