Привет, мне очень нужна помощь в проекте gradle ... Я новичок в студии android, и теперь у меня проблема с gradle.помогите мне, пожалуйста ...
Это мой код gradle (Project:)
buildscript {
repositories {
apply plugin: 'java'
apply plugin: 'announce'
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
и мой gradle (Модуль: приложение)
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.shoaib.newsletters"
minSdkVersion 18
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'
}
}
buildToolsVersion '27.0.3'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.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'
compile 'com.tomerrosenfeld.customanalogclockview:custom-analog-clock-view:1.1'
compile 'com.android.volley:volley:1.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
}
и теперь мои сообщенияСинхронизация gradle -
Error:(7, 0) Gradle DSL method not found: 'google()'
Possible causes:<ul><li>The project 'NewsLetters' may be using a version of Gradle that does not contain the method.
<a href="openGradleSettings">Gradle settings</a></li><li>The build file may be missing a Gradle plugin.
<a href="apply.gradle.plugin">Apply Gradle plugin</a></li>
. Сейчас я использую Gradle 3.2.1 в локальной системе. Пожалуйста, помогите мне: (