You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
E/AndroidRuntime: FATAL EXCEPTION: main
Process: my.sample.app, PID: 12213
java.lang.NoClassDefFoundError: Failed resolution of: Lorg/jacoco/agent/rt/internal_b0d6a23/Offline;
at com.taobao.weex.WXSDKEngine.$jacocoInit(WXSDKEngine.java)
at com.taobao.weex.WXSDKEngine.<clinit>(WXSDKEngine.java)
at com.taobao.weex.WXSDKEngine.addCustomOptions(WXSDKEngine.java)
at my.sample.app.WXApplication.onCreate(WXApplication.java:96)
...
I don't need jacoco in my app, so, how could it be solved?
PS
Looking inside weex_sdk-0.19.0.3-release.aar I see that it is using org.jacoco.agent.rt.internal_b0d6a23.Offline
package com.taobao.weex;
import org.jacoco.agent.rt.internal_b0d6a23.Offline;
public final class BuildConfig {
private static final transient /* synthetic */ boolean[] $jacocoData = null;
public static final String APPLICATION_ID = "com.taobao.weex";
public static final long ARMEABIV7_Size = 0;
public static final long ARMEABI_Size = 0;
public static final String BUILD_TYPE = "release";
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final boolean ENABLE_TRACE = false;
public static final String FLAVOR = "";
public static final int VERSION_CODE = 1;
public static final String VERSION_NAME = "1.0";
public static final long X86_Size = 0;
public static final String buildJavascriptFrameworkVersion = "null";
public static final String buildVersion = "0.19.0.3";
private static /* synthetic */ boolean[] $jacocoInit() {
boolean[] zArr = $jacocoData;
if (zArr != null) {
return zArr;
}
zArr = Offline.getProbes(4181343490275274697L, "com/taobao/weex/BuildConfig", 2);
$jacocoData = zArr;
return zArr;
}
public BuildConfig() {
$jacocoInit()[0] = true;
}
static {
boolean[] $jacocoInit = $jacocoInit();
$jacocoInit[1] = true;
}
}
The text was updated successfully, but these errors were encountered:
I'm trying to upgrade weex lib for my app (from 0.18.0 to 0.19.0.3) from here:
https://bintray.com/alibabaweex/maven/weex_sdk#files/com/taobao/android/weex_sdk/0.19.0.3
But unfortunately I got error on app start:
I don't need jacoco in my app, so, how could it be solved?
PS
Looking inside
weex_sdk-0.19.0.3-release.aar
I see that it is usingorg.jacoco.agent.rt.internal_b0d6a23.Offline
The text was updated successfully, but these errors were encountered: