我想從我的Android應用程序生成Excel報告,併爲此我遇到了apache POI
,但是當我將jar文件導入到文件夾中時,它向我顯示以下錯誤whoich, 。在Android中創建Excel表格
像
poi-3.11-20141221.jar
poi-ooxml-3.11-20141221.jar
poi-ooxml-schemas-3.11-20141221.jar
trouble writing output: Too many method references: 76142; max is 65536.
庫的話,我就下到小更新版本
trouble writing output: Too many method references: 66024; max is 65536.
poi-3.9-20121203.jar
poi-ooxml-3.9-20121203.jar
poi-ooxml-schemas-3.9-20121203.jar
我已經看到可以張貼相關,但仍然沒有找到解決這個問題的任何definate方式,將不勝感激,如果任何人可以建議路線圖
你需要減少你的依賴關係,或者在你的調試版本中啓用縮小,以減少你的方法引用計數。 – CommonsWare
我該怎麼做,你能給我一些指針嗎? – Hunt