我试图使用TouchImageView的依赖android。我无法使用类中的函数并在日志中获得此错误[1]: https://github.com/MikeOrtiz/TouchImageView
任务失败,出现异常。
- 哪里出错了:任务':hideItPro:mergeDebugNativeLibs'执行失败。
无法解析配置':hideItPro:debugRuntimeClasspath'的所有文件。无法解析com.github.MikeOrtiz:TouchImageView:1.1.1。要求:项目:hideItPro比;无法解析com.github.MikeOrtiz:TouchImageView:1.1.1。比;无法获取资源"https://s3.amazonaws.com/moat-sdk-builds/com/github/MikeOrtiz/TouchImageView/1.1.1/TouchImageView-1.1.1.pom"。比;无法获取"https://s3.amazonaws.com/moat-sdk-builds/com/github/MikeOrtiz/TouchImageView/1.1.1/TouchImageView-1.1.1.pom"。从服务器收到状态码403:Forbidden
-
试题:使用——stacktrace选项运行以获取堆栈跟踪。使用——info或——debug选项运行以获得更多的日志输出。运行-scan以获得完整的见解。==============================================================================
-
在https://help.gradle.org获取更多帮助
在此版本中使用了弃用的Gradle特性,使其与Gradle 7.0不兼容。使用'——warning-mode all'来显示单个弃用警告。见https://docs.gradle.org/6.5/userguide/command_line_interface.html秒:command_line_warnings
构建在27秒内失败303个可操作任务:270个已执行,33个最新
在settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
//here the dependency
maven { url 'https://jitpack.io' }
jcenter() // Warning: this repository is going to shut down soon
}
}
include ':app'
rootProject.name = "Apk"
this worked for me
在项目构建中添加maven存储库。gradle文件,
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
在应用构建中添加依赖项。gradle文件,
dependencies {
...
implementation 'com.github.MikeOrtiz:TouchImageView:1.4.1' // last SupportLib version
// or
implementation 'com.github.MikeOrtiz:TouchImageView:$LAST_VERSION' // Android X
}