我正在使用“ itext ”库创建将“ html内容转换为pdf ”的演示。生成pdf正常方式pdf成功但当我在下面添加选项时build.gradle
defaultConfig {
...
jackOptions {
enabled true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
“itextpdf”下面添加了编译依赖项 -
compile 'com.itextpdf:itextg:5.5.9'
错误:
java.lang.VerifyError:拒绝类com.itextpdf.text.pdf.PdfName,因为编译时验证失败(声明'com.itextpdf.text.pdf.PdfName'
如何重新解决此问题?或者给我一些pdf库名。