gpt4 book ai didi

android - 错误 :The SDK Build Tools revision (23. 0.3) 对于项目 ':app' 太低。最低要求是 25.0.0

转载 作者:IT老高 更新时间:2023-10-28 21:39:07 28 4
gpt4 key购买 nike

标题重复,但我的问题不同。

同一个项目运行良好,允许在其上构建

buildToolsVersion 23.0.3

在我同事的系统上。据我所知,只有 android studio 版本不同。如果我没有将我的 android studio 升级到“2.3.Beta 2”,是否有可能?我仍然可以使用 23.0.3 构建吗?

最佳答案

你必须改变 top-level build.gradle from

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}

allprojects {
repositories {
jcenter()
}
}

到:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}

allprojects {
repositories {
jcenter()
}
}

关于android - 错误 :The SDK Build Tools revision (23. 0.3) 对于项目 ':app' 太低。最低要求是 25.0.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41890659/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com