Android Gradle问题:原因:groovy.lang.MissingMethodException:无方法签名

gorkyyrv  于 2023-04-21  发布在  Android
关注(0)|答案(2)|浏览(422)

我的项目不是构建never。我一直得到同样的错误。
我尝试了一天的其他解决方案,但我无法取得进展:/
我搜索了解决方案,我意识到它可能与maven有关。
顺便说一句,我的项目是旧的。
这里是错误消息;

Caused by: groovy.lang.MissingMethodException: No signature of method: build_1tiyt7a69ra5smonjfai0v39h.android() is applicable for argument types: (build_1tiyt7a69ra5smonjfai0v39h$_run_closure2) values: [build_1tiyt7a69ra5smonjfai0v39h$_run_closure2@2cca4753]
at build_1tiyt7a69ra5smonjfai0v39h.run

我的**build.gradle(app)**文件在下面。

buildscript {
    repositories {
        google()
        mavenCentral()
        maven { url "http://dl.bintray.com/journeyapps/maven"; allowInsecureProtocol = true }
    }
}

repositories {
        google()
        maven { url 'https://maven.fabric.io/public' }
        maven { url 'https://zendesk.jfrog.io/zendesk/repo' }
        maven { url "https://jitpack.io" }
        flatDir { dirs "libs" }
    }

android {

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    packagingOptions {
        exclude 'META-INF/ASL2.0'
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }
    defaultConfig {
        applicationId "com.boomset.mobile"
        minSdkVersion 21
        compileSdkVersion 30
        targetSdk 31
        versionCode 60000013
        versionName "6.1.3"

        multiDexEnabled true
    }
    dexOptions {
        maxProcessCount 2
        javaMaxHeapSize "4g"
    }
 
    buildTypes {
        debug {
            debuggable true
            buildConfigField("int", "PLATFORM", platform)
            buildConfigField "String", "API_URL", "\"${endpoint}\""
            buildConfigField "String", "API_URL_PRETEST", "\"${pretest_endpoint}\""
            buildConfigField "String", "API_URL_STAGING", "\"${staging_endpoint}\""
            applicationIdSuffix ".debug"
        }
        release {
            buildConfigField("int", "PLATFORM", platform)
            buildConfigField "String", "API_URL", "\"${endpoint}\""
            buildConfigField "String", "API_URL_PRETEST", "\"${pretest_endpoint}\""
            buildConfigField "String", "API_URL_STAGING", "\"${staging_endpoint}\""
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            //signingConfig signingConfigs.config
        }
//        lintOptions {
//            disable 'InvalidPackage'
//        }

        lintOptions {
            checkReleaseBuilds false
            // Or, if you prefer, you can continue to check for errors in release builds,
            // but continue the build even when errors are found:
            abortOnError false
        }
    }

    configurations {
        all*.exclude module: 'gson'
    }

    configurations.all {
        c -> c.resolutionStrategy.dependencySubstitution {
            all { DependencySubstitution dependency ->
                if (dependency.requested.group == 'org.bouncycastle') {
                    dependency.useTarget 'org.bouncycastle:bcprov-jdk15to18:1.69'
                }
            }
        }
    }

    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }
    buildToolsVersion '29.0.3'
}

ext {
    supportLibraryVersion = '1.0.0'
    retrofitVersion = '2.4.0'
    okhttp3Version = '3.10.0'
    rxjava2Version = '2.2.1'
    butterKnifeVersion = '10.1.0'
    leakCanary = '1.5.4'
    ormlite = '4.48'
}

dependencies {

//dependencies...

}

谢谢你的帮助

rkkpypqq

rkkpypqq1#

如果您最近对proguard进行了一些更改,请查找设置useProguardfalse/true和DELETEthis的行,因为它不再受支持

voase2hg

voase2hg2#

问题出在android{}标签组件build.gradle中

相关问题