2017-06-09 8 views
0

のGradle enter image description hereBuild.Gradle(モジュールAPP)、未知のプロパティ

のsynにこれは私がしようとした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' 
} 

ている間、私はこの問題に遭遇してきましたコンパイルのいくつかの行を削除したが、私はこの問題を解決するために到着しなかった、

答えて

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' 
) 
+0

非常に説明のためにありがとう! – tuniprocoder

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' 
+0

ありがとう、それは動作します! – tuniprocoder

関連する問題