错误:找不到Gradle DSL方法:“ implementationSdkVersion()”

时间:2019-09-20 00:35:08

标签: android android-studio gradle android-gradle-plugin implementation

使用Google的API进行开发和应用的API。在DSL上没有任何限制的'implementationSdkVersion()'上的Quando eu sincronizo aaplicaçãoaparece uma mensagem de erro informationand erro informationando que no no gradlenãopossui ummétodoDSL。

我正在开发用于大学工作的应用程序,并且正在使用Google API。当我同步应用程序时,会出现一条错误消息,指出Gradle没有DSL方法,在这种情况下为'implementationSdkVersion ()'

在gradle上的ja tentei手枪,在projetoestá上的erá信息的手枪,在possui或método上的手枪。

我已经尝试更改gradle的版本,因为在错误消息中通知该项目正在使用不具有该方法的gradle的版本。

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'

    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

build.gradle(模块)

apply plugin: 'com.android.application'

android {
    apply plugin: 'maven'
    implementationSdkVersion 25
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.lookmaps.lookmaps"
        minSdkVersion 15
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation 'com.android.support:appcompat-v7:25.0.1'
    implementation 'com.google.android.gms:play-services:12.0.1'
    testImplementation 'junit:junit:4.12'
}

gradle-wrapper.propreties(Gradle版本)

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
  

错误:未找到Gradle DSL方法:“ implementationSdkVersion()”   可能的原因:   项目'(项目名称)'可能正在使用不包含该方法的Gradle版本。   打开Gradle包装器文件

构建文件可能缺少Gradle插件。 应用Gradle插件

1 个答案:

答案 0 :(得分:1)

问题在这里:

matrix([[1., 1.],
        [1., 2.],
        [1., 3.]])

使用:

apply plugin: 'com.android.application'
android {
    apply plugin: 'maven'   //<--
    implementationSdkVersion 25  //<--