Skip to content

Commit

Permalink
* [android] bug fix native crash
Browse files Browse the repository at this point in the history
  • Loading branch information
zshshr committed Sep 27, 2016
1 parent 0df6c74 commit d8671bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified android/sdk/libs/armeabi/libweexv8.so
Binary file not shown.
Binary file modified android/sdk/libs/x86/libweexv8.so
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@
import com.taobao.weex.common.WXErrorCode;
import com.taobao.weex.common.WXPerformance;

import dalvik.system.PathClassLoader;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
Expand All @@ -227,6 +225,8 @@
import java.util.zip.ZipException;
import java.util.zip.ZipFile;

import dalvik.system.PathClassLoader;


/**
* Utility class for managing so library, including load native library and version management.
Expand All @@ -250,8 +250,8 @@ public class WXSoInstallMgrSdk {
private final static String ARMEABI = "armeabi"; //default
private final static String X86 = "x86";
private final static String MIPS = "mips";
private final static int ARMEABI_Size = 3563340;
private final static int X86_Size = 4308128;
private final static int ARMEABI_Size = 3579724;
private final static int X86_Size = 4328576;

static Context mContext = null;

Expand Down

0 comments on commit d8671bd

Please sign in to comment.