ReactNativeUtil
                                
                                 ReactNativeUtil copied to clipboard
                                
                                    ReactNativeUtil copied to clipboard
                            
                            
                            
                        Dex: Error converting bytecode to dex: Cause: com.android.dex.DexIndexOverflowException: Cannot merge new index 65947 into a non-jumbo instruction!
android 方法数超过64K 解决方法: 1:app/build.gradle
compile'com.android.support:multidex:1.0.0'
2:
 defaultConfig {
        multiDexEnabled true
    }
3:在application里面
  @Override
  protected void attachBaseContext(Context base) {
    super.attachBaseContext(base);
    MultiDex.install(this);
  }
will be ok.