问题描述
问题:在使用ORB-SLAM3的安卓端移植提供的项目进行配置时,
修改gradle目录下的gradle-wrapper.properties文件中的distributionUrl指向内容,将其改为了
https\://services.gradle.org/distributions/gradle-8.0-bin.zip
而后修改build.gradle文件中的内容,将dependencies后改为
classpath "com.android.tools.build:gradle:8.0"
重新进行gradle项目导入时,出现错误:
Could not find com.android.tools.build:gradle:8.0.
解决方法
版本错误,gradle实际的版本号应该为8.0.0(虽然文件夹什么的都写的8.0,)
将
classpath "com.android.tools.build:gradle:8.0"
修改为
classpath "com.android.tools.build:gradle:8.0.0"
即可
即为:
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:8.0.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
参考链接
灵感来源:意识到版本号错误的来源