我的build.gradle与第22行中的错误不兼容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的build.gradle与第22行中的错误不兼容相关的知识,希望对你有一定的参考价值。

我用keytool生成了密钥,并将其粘贴到android / app文件夹中,但是运行命令./gradlew assembleRelease返回错误:

➜android git:(master)/ ./gradlew assembleRelease

FAILURE:构建因异常而失败。

  • Onde:构建文件'/Volumes/Projects/Apps/calculator/android/build.gradle'行:22

我的build.gradle与文档不同,附件中显示了我的build.gradle

//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {
    ext {
        buildToolsVersion = "28.0.2"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 27
        supportLibVersion = "28.0.0"
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
android { // line 22
    signingConfigs {
        release {
            if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
                storeFile file(MYAPP_UPLOAD_STORE_FILE)
                storePassword MYAPP_UPLOAD_STORE_PASSWORD
                keyAlias MYAPP_UPLOAD_KEY_ALIAS
                keyPassword MYAPP_UPLOAD_KEY_PASSWORD
            }
        }
    }
    buildTypes {
        release {
            signingConfig signingConfigs.release
        }
    }
}

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}


task wrapper(type: Wrapper) {
    gradleVersion = '4.7'
    distributionUrl = distributionUrl.replace("bin", "all")
}

构建文件'/Volumes/Projetos/Apps/calculator/android/build.gradle'行:22

答案
MYAPP_UPLOAD_STORE_FILE=youkeystorefilenamehere.keystore MYAPP_UPLOAD_KEY_ALIAS=yourkeyalias MYAPP_UPLOAD_STORE_PASSWORD=yourstorepassword MYAPP_UPLOAD_KEY_PASSWORD=yourkeypassword
另一答案
apply plugin: "com.android.application" android { .... }

以上是关于我的build.gradle与第22行中的错误不兼容的主要内容,如果未能解决你的问题,请参考以下文章

build.gradle 文件中的 compileKotlin 块抛出错误“找不到参数的方法 compileKotlin() [...]”

Visual Studio Code 中的 build.gradle 错误(Flutter)

将eclipse导入android studio时如何修复错误?(作为build.gradle的编译时依赖项)

使用 clean() 方法在我的 build.gradle 中出错

Gradle 错误:找不到 com.android.tools.build:gradle:6.6.1

如何解决颤振中的 build.gradle 错误。如何解决此错误“评估项目 ':app' 时出现问题。> 格式错误的 \uxxxx 编码。”