2016-06-11 1 views
0

J'ouvre un projet d'ami chez Android Studio, ma version AS est supérieure à la sienne.

Voici l'erreur:Méthode Gradle DSL introuvable android()

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. 

Voici le 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 { 
} 

Comment puis-je obtenir ce fixe?

Répondre

2

Regardez ici du document officiel. 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

Maintenant je une autre erreur: Erreur: (2, 0) Cause: com/android/build/gradle/AppPlugin: version non prise en charge majeur.mineur 52,0 Open File

+0

Utilisez Java 7 au lieu de 8 – mrkernelpanic

+0

Merci , le projet utilisait jdk 1.7 et j'ai mis à jour pour 1.8 –