瀏覽代碼

doc: add notes to enable 32bit only mode

master
Sebastian Safari 7 年之前
父節點
當前提交
ce01b31514
共有 1 個檔案被更改,包括 13 行新增0 行删除
  1. 13
    0
      android/README.md

+ 13
- 0
android/README.md 查看文件

@@ -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>

Loading…
取消
儲存