Gradle DSL method not found: 'android()'

  • Antworten:0
Frank H.
  • Forum-Beiträge: 4

29.11.2014, 21:19:35 via Website

Hallo,
ich bin android-Anfänger und versuche mich mit Hilfe von android-studio 0.8.14 einzuarbeiten.

Im Moment importiere ich die samples, um diese zu verstehen.
Jetzt bin ich bei "ActionBarCompact-Basic" unter API21.
Dabei tritt folgendes Problem auf:
"Gradle DSL method not found: 'android()'"
...

Kann mir jemand sagen was zu tun ist bzw. welche Infos dafür noch erforderlich wären.
Vielen Dank
Frank

Hier der gekürzte Inhalt von build.gradle:
...
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
....
apply plugin: 'com.android.application'

dependencies {
compile "com.android.support:support-v4:21.+"
compile "com.android.support:gridlayout-v7:21.+"
compile "com.android.support:cardview-v7:21.+"
compile "com.android.support:appcompat-v7:18.0.+"
}

List dirs = [
'main', // main sample code; look here for the interesting stuff.
'common', // components that are reused by multiple samples
'template'] // boilerplate code that is generated by the sample template process

android {
compileSdkVersion 21
buildToolsVersion "21.1.1"

defaultConfig {
    minSdkVersion 7
    targetSdkVersion 21
}

sourceSets {
    main {
        dirs.each { dir ->
            java.srcDirs "src/${dir}/java"
            res.srcDirs "src/${dir}/res"
        }
    }
    androidTest.setRoot('tests')
    androidTest.java.srcDirs = ['tests/src']

...

Antworten