FolioReader-Android 缓存问题
FolioReader-Android Cache Issue
我想在我的 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: error: resource android:attr/android:progressBarStyle not found.
有什么问题?
在你的 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")
}
}
`
我想在我的 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: error: resource android:attr/android:progressBarStyle not found.
有什么问题?
在你的 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")
}
}
`