gpt4 book ai didi

android - 使用apply插件时出现错误: 'com.android.library'

转载 作者:行者123 更新时间:2023-12-03 03:32:57 26 4
gpt4 key购买 nike

我在android studio中创建了一个普通项目,并考虑了要从该项目中创建aar文件的教程,但出现以下错误:

Gradle: 
FAILURE: Build failed with an exception.

* Where:
Build file 'C:\Users\tec\AndroidStudioProjects\B\B\build.gradle' line: 1

* What went wrong:
A problem occurred evaluating project ':B'.
> Plugin with id 'com.android.library' not found.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Could not execute build using Gradle distribution 'http://services.gradle.org/distributions/gradle-1.6-bin.zip'.

我的 gradle文件如下:
apply plugin: 'com.android.library'
buildscript {
repositories {
maven { url 'http://repo1.maven.org/maven2' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'

dependencies {
compile files('libs/android-support-v4.jar')
}

android {
compileSdkVersion 17
buildToolsVersion "17.0.0"

defaultConfig {
minSdkVersion 7
targetSdkVersion 16
}
}

最佳答案

您必须更新脚本:

首先使用最新的gradle插件。

classpath 'com.android.tools.build:gradle:1.3.0'

然后更新您的gradle包装器。
在您的项目中打开此文件:
<Project>/gradle/wrapper/gradle-wrapper.properties

distributionUrl=http\://services.gradle.org/distributions/gradle-2.4-all.zip

最后删除 apply plugin: 'android'

关于android - 使用apply插件时出现错误: 'com.android.library',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32079733/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com