Не удается разрешить внешнюю зависимость com.google.gms: google-services: 3.1.1, поскольку репозитории не определены.Требуется: проект: приложение - PullRequest
0 голосов
/ 24 сентября 2018

Когда я хочу запустить свое приложение, они говорят «Конфигурация по-прежнему неверна», а также появляются сбой синхронизации проекта Gradle.А также это.

Невозможно разрешить внешнюю зависимость com.google.gms: google-services: 3.1.1, так как репозитории не определены.Требуется: проект: приложение

это мой build.gradle (проект)

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:3.1.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

А вот мой build.gradle (модуль)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.eky.biofarma4"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
    implementation 'com.android.support:cardview-v7:28.0.0-rc02'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.firebase:firebase-auth:11.6.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:gridlayout-v7:28.0.0-rc02'
}


buildscript {
    dependencies {
        classpath 'com.google.gms:google-services:3.1.1'
    }
}
apply plugin: 'com.google.gms.google-services'

и мой setting.gradle

include ':app'

У меня установлена ​​служба Google play и Google Repository в SDK Manager, и после просмотра некоторых случаев яположить

allprojects {
  repositories {
    // ...
    maven { url "https://maven.google.com" }
  }
}

и я пытаюсь синхронизировать его снова, затем они говорят

Не удалось найти метод allprojects () для аргументов [settings_821vp53luwtcqzqny9o3oudnz $ _run_closure1 @ 189972c9]в настройках 'Biofarma4' типа org.gradle.initialization.DefaultSettings.

что там найти?Как и где я могу найти и поставить?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...