【解决方案记录】Could not find com.android.tools.build:gradle:8.0.


问题描述

问题:在使用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
    }
}

参考链接

灵感来源:意识到版本号错误的来源

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值