1. ホーム
  2. android

[解決済み] Gradle DSL メソッドが見つかりません:'compile()'

2022-01-25 23:50:01

質問

このようなgradleのエラーが発生しました。

Error:(9, 0) Gradle DSL method not found: 'compile()'.

似たような質問を参考にしてみたのですが、うまくいきませんでした。

Android gradle build Error:(9, 0) Gradle DSL method not found: 'compile()'.

Build.Gradleの同期時にエラー "Gradle DSL method not found: 'compile()'" を発生させる。

サポートされていない Gradle DSL メソッドが見つかりました: 'compile()'!

私の build.gradle のコードはこちらです。

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
        compile 'com.android.support:appcompat-v7:20.+'
        compile 'com.google.android.gms:play-services:6.5.+'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

build.gradle(Module.app)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"

    defaultConfig {
        applicationId "com.example.simplemaker.pushtest"
        minSdkVersion 9
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
}

私のコードに何か問題があるのでしょうか?

どうすればいいですか?

プロジェクトのノートとして build.gradle ファイルが示唆しています。

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

そのgradleファイル内の2つのコンパイル文を削除します。

compile 'com.android.support:appcompat-v7:20.+'
compile 'com.google.android.gms:play-services:6.5.+'

そして、他の(モジュールの)を build.gradle の依存関係はこのようになります。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'com.google.android.gms:play-services:6.5.+'
}