在得到标题中的错误之前,我得到了以下 transformException
Duplicate files copied in APK META-INF/LICENSE
path\to\file\miglayout-3.7.4.jar
path\to\file\log4j-1.2.16.jar
我也无法删除,因为当我构建 gradle 时,我的 Maven 依赖项会重新下载它们。我通过添加解决了这个问题
packagingOptions{
pickFirst 'META-INF/*'
}
在我的 build.gradle 的 android 部分中
以下代码块引发了错误
if(null==defaultDevice) { // avoid NPE and notify of incomplete initialization
throw new GLException("No default device available");
}
我该如何解决这个问题?