我想在 Android Studio 中使用 FolioReader-Android 库。我在 Gradle 上实现了该库,当我想运行该项目时,出现未知错误:*/Users/hamid/.gradle/caches/transforms-2/files-2.1/1ef74cdf85927d9b084bf9bd34edc7d8/folioreader-0.5.4/res/layout/progress_dialog.xml:13: AAPT: 错误: 资源 android:attr/android:progressBarStyle 未找到。有什么问题?
1 回答
慕娘9325324
TA贡献1783条经验 获得超4个赞
在你的 gradle 依赖项中尝试添加这个
implementation "com.folioreader:folioreader:0.5.4"
implementation 'com.android.support:multidex:1.0.3' // ( for androidx)
configurations.matching { it.name == '_internal_aapt2_binary' }.all {
config ->
config.resolutionStrategy.eachDependency {
details -> details.useVersion("3.3.2-5309881")
}
}
`
添加回答
举报
0/150
提交
取消