Error:(9, 0) Could not get unknown property 'manifest' for source set 'main' of type org.gradle.api.

最近在研究学习Android组件化开发。在处理组件之间AndroidManifest合并问题的时候遇到 这个错误。想来也是大意了才搞错,在此记录。

Error:(9, 0) Could not get unknown property 'manifest' for source set 'main' of type org.gradle.api._第1张图片

解决方法  :其实很简单就是代码的位置放错了,sourceSets一定要放到android里面才能够识别。

if(isModule.toBoolean()){
    apply plugin: 'com.android.application'//组件模式
}else{
    apply plugin: 'com.android.library'//集成模式
}

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"


    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets {
        main {
            if (isModule.toBoolean()) {
                manifest.srcFile 'src/main/module/AndroidManifest.xml'
            } else {
                manifest.srcFile 'src/main/AndroidManifest.xml'
            }
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    testCompile 'junit:junit:4.12'
}

修改之后 同步没有任何问题。

你可能感兴趣的:(Error)