Couchbase lite 2.0.0error C4Log.setLevel

The issue happens when trying to set the default log level after loading the native library as the code below:

static {
  NativeLibraryLoader.load();
  Log.setLogLevel(LogDomain.ALL, LogLevel.WARNING);
}

@zxyang178, Is there any errors shown in the Logcat? Can you try to get the CPU arch with the following code and see what it is?

String arch;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP)  {
  arch = Build.SUPPORTED_ABIS[0];
} else {
  arch = Build.CPU_ABI;
}