2016-07-16 11 views
0

Ich arbeitete an meinem Projekt in Android Studio unter Windows, aber jetzt versuche ich es auf Ubuntu zu öffnen, aber es hält beschweren, dass:Wie zu beheben "Fehler: Fehler: Linie (23) Gradle DSL-Methode nicht gefunden: 'android()"

Error:Error:line (23)Gradle DSL method not found: 'android()' Possible causes: //(Error23,0) 

The project 'POSTER' 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 

Projekt 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.1.2' 
     classpath 'com.google.gms:google-services:3.0.0' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 
allprojects { 
    repositories { 
     jcenter() 
    } 
} 
task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

android { 
    compileSdkVersion 23 
    buildToolsVersion '24.0.0' 
} 

App Gradle

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "24.0.0" 

    defaultConfig { 
     applicationId "com.ozuf.poster" 
     minSdkVersion 16 
     targetSdkVersion 23 
     versionCode 5 
     versionName "0.5 Beta" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 


dependencies { 
    compile project(':volley') 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    testCompile 'junit:junit:4.12' 
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' 
    compile 'org.jsoup:jsoup:1.9.1' 
    compile 'com.android.support:support-v4:23.4.0' 
    compile 'com.android.support:appcompat-v7:23.4.0' 
    compile 'com.android.support:design:23.4.0' 
    compile 'com.android.support:cardview-v7:23.4.0' 
    compile 'com.android.support:recyclerview-v7:23.4.0' 
    compile 'ch.acra:acra:4.9.0-RC-2' 
    compile 'com.google.firebase:firebase-core:9.0.2' 
    compile 'com.google.firebase:firebase-ads:9.0.2' 
} 


apply plugin: 'com.google.gms.google-services' 

Gradle-wrapper.properties

#Fri Apr 08 19:27:52 WAT 2016 
distributionBase=GRADLE_USER_HOME 
distributionPath=wrapper/dists 
zipStoreBase=GRADLE_USER_HOME 
zipStorePath=wrapper/dists 
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 

Bitte, tun Sie eine Ahnung, was das und wie verursacht es zu beheben?

+0

Sam e Frage mit Antwort hilft Ihnen zu lösen: 1. http://stackoverflow.com/questions/27735646/android-studio-gradle-dsl-method-not-found-android-error17-0 2. https: // Medium. com/@marcuspereira/solving-the-gradle-dsl-method-not-found-android-in-android-studio-6e5ab499bd3#.y27dt11gb –

+0

@priyanshbhaliya thnks das Medium Link löste das Problem. – X09

Antwort

1

löschen android Einstellungen im Projekt gradle

android { 
    compileSdkVersion 23 
    buildToolsVersion '24.0.0' 
} 

, wenn Sie als gemeinsame Konfiguration festlegen möchten, können Sie ist wie folgt verwenden:

Projekt gralde:

ext { 
    compileSdkVersion 23 
    buildToolsVersion '24.0.0' 
} 

App gralde:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion rootProject.ext.compileSdkVersion 
    buildToolsVersion rootProject.ext.buildToolsVersion 

    defaultConfig { 
     applicationId "com.ozuf.poster" 
     minSdkVersion 16 
     targetSdkVersion 23 
     versionCode 5 
     versionName "0.5 Beta" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
}