热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

错误:SDKBuildTools修订版(23.0.3)对于项目':app'来说太低了.最低要求是25.0.0

如何解决《错误:SDKBuildTools修订版(23.0.3)对于项目':app'来说太低了.最低要求是25.0.0》经验,为你挑选了2个好方法。

标题是重复的,但我的问题是不同的.

同样的项目工作正常,并允许建立

buildToolsVersion 23.0.3

在我的同事的系统上.据我所知,只有android studio版本不同.如果我没有将我的android工作室升级到"2.3.Beta 2",我仍然可以用23.0.3构建吗?



1> isabsent..:

你必须改变顶层 的build.gradle

// 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()
    }
}



2> Mudassir Kha..:

好的,我找到了解决方案.

对于将来面临同样问题的人来说,这就是我所做的:

我将以下内容添加到我的root build gradle android/build.gradle(不是android/app/build.gradle)

subprojects {
    afterEvaluate {project ->
        if (project.hasProperty("android")) {
            android {
                compileSdkVersion 25
                buildToolsVersion '25.0.0'
            }
        }
    }
}

这会强制所有子模块使用指定的compileSdkVersion和buildToolsVersion.问题现在消失了.


推荐阅读
author-avatar
laknm_456
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有