当前位置:   article > 正文

No signature of method: build_*.android() is applicable for argument types

no signature of method: build

意思很直观:就是build的时候,android()的参数错误。
更新android studio 后出现这种问题,主要是新版本的生成的app和module模版有所变化引起的。

Android Studio Electric Eel | 2022.1.1 Patch 1
Build #AI-221.6008.13.2211.9514443, built on January 21, 2023
Runtime version: 11.0.15+0-b2043.56-8887301 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
macOS 12.6.3
GC: G1 Young Generation, G1 Old Generation
Memory: 2048M
Cores: 4
Registry:
external.system.auto.import.disabled=true
ide.text.editor.with.preview.show.floating.toolbar=false
ide.instant.shutdown=false

根据如下几点快速匹配尝试处理:

1、build.gradle 中apply plugin 变化

apply plugin: ‘com.android.application’ 变化为

plugins {
    id 'com.android.application'
}
  • 1
  • 2
  • 3

2、android括号里面的配置项名称变化

一般情况是没有了’Version’字样,例如compileSdkVersion 变成了compileSdk

android {
//    namespace 'com.eagle.chatgpt'
    compileSdk 29
    buildToolsVersion '30.0.1'
    defaultConfig {
        applicationId "com.eagle.chatgpt"
        minSdkVersion 24
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述

3、manifest中package变成namespace并移到了build.gradle中

在这里插入图片描述
同时这build.gradle中android节点中多了namespace参数
在这里插入图片描述
此时如果将gradle版本号降低,那么就出现了如题的问题,gradle版本号为低于7.4.1时就android() 是没有namespace参数的,此时将namespace去处,同时这manifest中添加package属性就正常了。

4、原始办法-注释法

根据报错信息(行号)我们很容易找到android位置,将其中的属性都注释掉,一行行放开。哪个错再对应具体查找基本可以解决。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/510101
推荐阅读
相关标签
  

闽ICP备14008679号