when I add 'com.google.firebase:firebase-auth:11.4.2' to my Gradle I receive an Error "Gradle DSL method not found: compile()"
this is my App/Gradle
    apply plugin: 'com.android.application'
    android {
        compileSdkVersion 26
        buildToolsVersion "26.0.2"
        defaultConfig {
            applicationId "com.watchmecoding.eazynote"
            minSdkVersion 15
            targetSdkVersion 26
            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(include: ['*.jar'], dir: 'libs')
        androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
            exclude group: 'com.android.support', module: 'support-annotations'
        })
        compile 'com.android.support:appcompat-v7:25.3.1'
        compile 'com.android.support:design:25.3.1'
        testCompile 'junit:junit:4.12'
        compile 'com.google.code.gson:gson:2.8.2'
        compile 'com.google.firebase:firebase-core:11.4.2'
        compile 'com.google.firebase:firebase-database:11.4.2'
        compile 'com.google.firebase:firebase-crash:11.4.2'
        compile 'com.google.firebase:firebase-ads:11.4.2'
        compile 'com.google.firebase:firebase-config:11.4.2'
        compile 'com.google.firebase:firebase-storage:11.4.2'
        compile 'com.google.firebase:firebase-analytics:11.4.2'
        comlile 'com.google.firebase:firebase-auth:11.4.2'
    }
apply plugin: 'com.google.gms.google-services'
and here is my project/gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.google.gms:google-services:3.1.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
allprojects {
    repositories {
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    }
}
task clean(type: Delete) {
    delete rootProject.buildDir
}
my repository is update, and i did everything just like the tutorial, but still have this problem, versions are all the same too. thanks in advance.
