2016-07-16 40 views
0

我在Windows上的Android Studio中处理我的项目,但现在我试图在Ubuntu上打开它,但它保留抱怨说:如何修复“Error:Error:line(23)Gradle DSL method not found:'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 

项目摇篮

// 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' 
} 

应用摇篮

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 

请,你有什么想法是什么导致了这个问题以及如何解决它?在项目gradle这个

+0

Sam e问题与答案帮助您解决:1. http://stackoverflow.com/questions/27735646/android-studio-gradle-dsl-method-not-found-android-error17-0 2. https://中。 com /@marcuspereira/solving-the-gradle-dsl-method-not-found-android-in-android-studio-6e5ab499bd3#.y27dt11gb –

+0

@priyanshbhaliya thnks介质链接解决了问题。 – X09

回答

1

删除Android设置

android { 
    compileSdkVersion 23 
    buildToolsVersion '24.0.0' 
} 

,如果你想设置为常见的配置,你可以使用是这样的:

项目gralde:

ext { 
    compileSdkVersion 23 
    buildToolsVersion '24.0.0' 
} 

应用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' 
     } 
    } 
} 
相关问题