“无法应用插件‘com.android.internal.application’" [英] "Failed to apply plugin 'com.android.internal.application"

查看:601
本文介绍了“无法应用插件‘com.android.internal.application’"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我第一次在 android studio 上使用 flutter,安装后我一直收到这个错误我的 Gradle 文件版本是 4.1.0

I'm using flutter on android studio for the first time and after installing it I kept getting this error my Gradle files version is 4.1.0

Running Gradle task 'assembleDebug'...

FAILURE: Build failed with an exception.

* Where:
Build file 'C:\Users\ahmed\flutter12\android\app\build.gradle' line: 24

* What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.application'.
   > Could not create plugin of type 'AppPlugin'.
      > Could not generate a decorated class for type AppPlugin.
         > com/google/wireless/android/sdk/stats/GradleBuildProject$PluginType

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 5s
Exception: Gradle task assembleDebug failed with exit code 1

我的安卓版本是 4.0.1

and my android version is 4.0.1

这是我的 build.gradle 文件我不知道出了什么问题我将 jdk sdk 和 android studio 更新到最新版本 4.1.2

this is my build.gradle files I don't know what's went wrong I updated my jdk sdk and android studio to the last version 4.1.2

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
   localPropertiesFile.withReader('UTF-8') { reader ->
       localProperties.load(reader)
   }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
   throw  GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
   flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
   flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
   compileSdkVersion 30

   defaultConfig {
       // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
       applicationId "com.example.flutterwq"
       minSdkVersion 16
       targetSdkVersion 30
       versionCode flutterVersionCode.toInteger()
       versionName flutterVersionName
   }

   buildTypes {
       release {
           // TODO: Add your own signing config for the release build.
           // Signing with the debug keys for now, so `flutter run --release` works.
           signingConfig signingConfigs.debug
       }
   }
}

flutter {
   source '../..'
}

推荐答案

打开android/build.gradle文件,查看com.android.tools.build:gradle的版本:

Open the android/build.gradle file, and check the version of com.android.tools.build:gradle :

buildscript {
    ...
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'
        ...
    }
}

使该版本更小,直到某个版本有效.可以从这里选择版本,在插件列中:https://developer.android.com/studio/releases/gradle-plugin#updating-gradle

Make that version smaller, until some version works. The version can be choosed from here, in the plugin column: https://developer.android.com/studio/releases/gradle-plugin#updating-gradle

问题出现在gradle太旧和android gradle插件太新时.

The problem occurs when gradle is too old and android gradle plugin is too new.

这篇关于“无法应用插件‘com.android.internal.application’"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆