我在我的应用中一起使用Picasso
和Retrofit
。一切都在debug
版本中完美运行,但每当我尝试生成签名的apk时,我都会得到类似Error:Execution failed for task ':app:transformClassesAndResourcesWithProguardForRelease'
我搜索了一段时间,并尝试在-dontwarn retrofit.*
proguard-rules.pro
这不起作用
答案 0 :(得分:0)
func viewDidLoad() {
super.viewDidLoad()
DispatchQueue.main.async { [unowned self] in
if let tableViewIndex = self.tableView.subviews.first(where: { String(describing: type(of: $0)) == "UITableViewIndex" }) {
tableViewIndex.setValue(*Insert Font Here*, forKey: "font")
self.tableView.reloadSectionIndexTitles()
}
}
}
proguard配置
Picasso
-dontwarn com.squareup.okhttp.**
proguard配置
Retrofit