Build.Gradle(Module App)未知属性

时间:2017-06-09 09:32:35

标签: android gradle build.gradle

我在Gradle的同步时遇到了这个问题 enter image description here

这是build.gradle的代码(模块应用程序)

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "ahmedchtn.smartschool"
        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'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    //RecyclerView


    //retrofit,gson

    //glide
    compile
    'com.github.bumptech.glide:glide:3.7.0'
compile
    'com.android.support:appcompat-v7:25.3.1'compile
    'com.android.support.constraint:constraint-layout:1.0.2'compile
    'com.android.support:support-v4:25.3.1'compile
    'com.android.support:design:25.3.1'compile
    'com.github.bumptech.glide:glide:3.7.0'compile 'com.android.support:recyclerview-v7:25.3.1'
    compile 'com.google.code.gson:gson:2.6.2'
    compile 'com.squareup.retrofit2:retrofit:2.0.2'
    compile 'com.squareup.retrofit2:converter-gson:2.0.2'
    testCompile 'junit:junit:4.12'
}

我试图删除一些编译行,但我没有到达解决问题,

2 个答案:

答案 0 :(得分:0)

您的档案中几乎没有拼写错误:

compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:appcompat-v7:25.3.1'

compile之后你不应该有换行符。

dependencies块的典型结构是:

dependencies {
    // production
    compile 'group:name:version'

    // for local tests
    testCompile 'group:name:version'

    // for tests on device / emulator
    androidTestCompile 'group:name:version'
}

如果你真的想换行(我甚至不知道为什么)你必须在依赖关系定义周围明确添加括号:

compile (
    'com.github.bumptech.glide:glide:3.7.0'
)

答案 1 :(得分:0)

将其更改为此。

compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
testCompile 'junit:junit:4.12'