在某些设备上,我的应用程序崩溃了
Exception java.lang.NoSuchMethodError: No virtual method decrementAndGet()I in class Lorg/apache/commons/lang3/mutable/MutableInt; or its super classes (declaration of 'org.apache.commons.lang3.mutable.MutableInt' appears in /system/framework/framework.jar:classes2.dex)
据我所知(我可能错了),Android 设备已经拥有apache commons lang3库。
我也将它包含在我的应用程序中(作为依赖项),但似乎实际加载到类路径上的不是我提供的,而是不存在该方法的旧版本。
有没有办法指示 gradle 强制使用我的 apk 中定义的apache commons lang3版本,而不是系统提供的版本?