2016-06-11 3 views
0

Я открываю проект друга в Android Studio, моя версия AS больше его.

Здесь ошибка:Gradle Метод DSL не найден Андроид()

Error:(27, 0) Gradle DSL method not found: 'android()' 
Possible causes:The project 'firstapp' may be using a version of Gradle that does not contain the method. 
Open Gradle wrapper file  The build file may be missing a Gradle plugin. 
Apply Gradle plugin. 

Вот build.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.2.0-alpha1' 
     classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 
allprojects { 
    repositories { 
     jcenter() 
     mavenCentral() 
     maven { 
      url 'https://oss.sonatype.org/content/repositories/snapshots/' 
     } 
    } 
} 
task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

android { 
    compileSdkVersion 19 
    buildToolsVersion '21.0.0' 
} 
dependencies { 
} 

Как я могу получить это исправить?

ответ

2

Посмотрите здесь из официального документа. https://developer.android.com/studio/build/index.html

/** 
 * The first line in the build configuration applies the Android plugin for 
 * Gradle to this build and makes the android {} block available to specify 
 * Android-specific build options. 
 */ 

apply plugin: 'com.android.application' 
+0

Теперь я получаю другую ошибку: Ошибка: (2, 0) Причина: ком/Android/строить/Gradle/AppPlugin: неподдерживаемый MAJOR.MINOR версия 52,0 Open File

+0

Использование Java 7 вместо 8 – mrkernelpanic

+0

Спасибо , проект использовал jdk 1.7 и i обновлен для 1.8 –

Смежные вопросы