Procházet zdrojové kódy

fix_4724: Fixes android crashes on startup (#5132)

Makhout Nabil před 5 roky
rodič
revize
ca288102d3
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. 4
    1
      playground/android/app/build.gradle

+ 4
- 1
playground/android/app/build.gradle Zobrazit soubor

@@ -2,7 +2,10 @@ apply plugin: "com.android.application"
2 2
 
3 3
 project.ext.react = [
4 4
         root     : "../../../",
5
-        entryFile: "index.js"
5
+        entryFile: "index.js",
6
+        bundleAssetName: "index.android.bundle",
7
+        bundleInAlpha: true,
8
+        bundleInBeta: true
6 9
 ]
7 10
 
8 11
 apply from: "../../../node_modules/react-native/react.gradle"