gpt4 book ai didi

AndroidAnnotations with IntelliJ IDEA 和 'android-apt' Gradle 插件 : "Could not find property ' androidTestCompile' on configuration container"

转载 作者:行者123 更新时间:2023-11-30 02:45:03 25 4
gpt4 key购买 nike

我正在尝试在 IntelliJ IDEA 中使用 AndroidAnnotations 和 Gradle 创建一个Hello World。(我只有一些 IntelliJ 的经验,所有其他的东西对我来说都是全新的。)

我在 IntelliJ IDEA 中创建了一个新的 Gradle: Android 模块,然后在 AndroidAnnotations 的 Configure your gradle 中按照“official guide”编辑了 build.gradle .

不幸的是,我收到此错误消息说我不知道​​是什么(第 18 行:apply plugin: 'android-apt')

Gradle: A problem occurred evaluating project ':Hello'.
> Could not find property 'androidTestCompile' on configuration container.

这是我的build.gradle:

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.+'
}
}

repositories {
mavenCentral()
mavenLocal() // cache (USER_HOME/.m2 folder)

}

apply plugin: 'android'
apply plugin: 'android-apt' // This is the line of the error
def AAVersion = '3.0.1' // IS THIS OK?

dependencies {
compile 'com.android.support:appcompat-v7:+'
compile 'com.android.support:support-v4:18.0.0'
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}

apt {
arguments {
androidManifestFile variant.processResources.manifestFile
resourcePackageName 'com.hello.app'

// If you're using Android NBS flavors you should use the following line instead of hard-coded packageName
// resourcePackageName android.defaultConfig.packageName

// You can set optional annotation processing options here, like these commented options:
// logLevel 'INFO'
// logFile '/var/log/aa.log'
}
}

android {
compileSdkVersion 20
buildToolsVersion "20.0.0"

defaultConfig {
minSdkVersion 7
targetSdkVersion 20
versionCode 1
versionName "1.0"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

// This is only needed if you project structure doesn't fit the one found here
// http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Project-Structure
sourceSets {
main {
manifest.srcFile 'src/main/AndroidManifest.xml'
// java.srcDirs = ['src/main/java', 'build/generated/source/apt/${variant.dirName}']
// resources.srcDirs = ['src/main/resources']
res.srcDirs = ['src/main/res']
// assets.srcDirs = ['src/main/assets']
}
}
}

最佳答案

版本兼容性。

androidTestCompile 是在 Android Gradle 插件的 0.9.0 版本中引入的(我使用的是 0.7.+ 此处),因此 0.9.0 是应该与 android-apt 的较新版本(此处为 3.0.1)一起使用的最低版本。


此外,您可能会遇到所有这些工具的不兼容版本的更多问题。

HereAndroid Studio、Android Gradle 插件Gradle

之间的 版本兼容性

关于AndroidAnnotations with IntelliJ IDEA 和 'android-apt' Gradle 插件 : "Could not find property ' androidTestCompile' on configuration container",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25194179/

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