Quellcode durchsuchen

doc: add notes to enable 32bit only mode

master
Sebastian Safari vor 6 Jahren
Ursprung
Commit
ce01b31514
1 geänderte Dateien mit 13 neuen und 0 gelöschten Zeilen
  1. 13
    0
      android/README.md

+ 13
- 0
android/README.md Datei anzeigen

@@ -33,6 +33,19 @@ dependencies {
33 33
 }
34 34
 ```
35 35
 
36
+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)
37
+
38
+```gradle
39
+android {
40
+    ... 
41
+    defaultConfig {
42
+        ndk {
43
+            abiFilters "armeabi-v7a", "x86"
44
+        }
45
+    }
46
+    ...
47
+```
48
+
36 49
 ### Build and use your own SDK artifacts/binaries
37 50
 
38 51
 <details>

Laden…
Abbrechen
Speichern