gpt4 book ai didi

android - Gradle Android 找不到方法 testPackage()

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:33:39 27 4
gpt4 key购买 nike

我使用 Gradle 构建项目。我现在正在尝试将我们的测试添加到构建中。我不完全确定这是如何工作的,或者实际使用的语法是什么。

这是我一直试图开始工作的测试应用程序的构建脚本。我的测试在 src/instrumentTest/java 目录中。

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 8
targetSdkVersion 16
testPackage "com.example.myapplication.test"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}
}

当我进行构建时,出现以下错误。

失败:构建失败,出现异常。

  • 地点:构建文件“/Users/kbrown/AndroidStudioProjects/MyApplicationProject/MyApplication/build.gradle”行:22

  • 出了什么问题:评估项目“:MyApplication”时出现问题。

    Could not find method testPackage() for arguments [com.example.myapplication.test] on ProductFlavorDsl_Decorated{name=main, minSdkVersion=8, targetSdkVersion=16, renderscriptTargetApi=-1, versionCode=-1, versionName=null, packageName=null, testPackageName=null, testInstrumentationRunner=null, signingConfig=null}.

最佳答案

Gradle 1.0 版本更改了各种属性名称

“testPackageName”也被“testApplicationId”取代

您可以在 Migrating Gradle Projects to version 1.0.0 查看更多信息

关于android - Gradle Android 找不到方法 testPackage(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16971740/

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