No signature of method bug

bug

No signature of method: static org.gradle.api.java.archives.Manifest.srcFile() is applicable for argument types: (java.lang.String) values: [src/main/debug/AndroidManifest.xml]



原代码

sourceSets {
    main{
        if (isBuildModule.toBoolean()) {
            Manifest.srcFile 'src/main/debug/AndroidManifest.xml'
        } else {
            Manifest.srcFile 'src/main/release/AndroidManifest.xml'
        }
    }
}

 大写 maifest改成 小写

sourceSets {
    main{
        if (isBuildModule.toBoolean()) {
            manifest.srcFile 'src/main/debug/AndroidManifest.xml'
        } else {
            manifest.srcFile 'src/main/release/AndroidManifest.xml'
        }
    }
}
就好了。

你可能感兴趣的:(No signature of method bug)