gpt4 book ai didi

android - 找不到参数 [com.android.volley.tests] 的方法 testPackageName()

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

我想从 eclipse 迁移到 studio。我遵循了教程并尝试使用 gradle 在工作室中构建现有的 eclipse 应用程序。我在运行此评论时遇到以下问题

 Rethinavels-Mac-mini:HomeStarProvider rethinavel$ ./gradlew clean

我是 studio 和 gradle 的新手。如何解决这个问题?有学习 gradle 的教程吗?

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

  • 地点:构建文件“/Users/rethinavel/Desktop/WorkSpace/HomeStarProvider/Volley/build.gradle”行:9

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

    Could not find method testPackageName() for arguments [com.android.volley.tests] on ProductFlavor_Decorated{name=main, minSdkVersion=null, targetSdkVersion=null, renderscriptTargetApi=null,

    renderscriptSupportModeEnabled=null, renderscriptNdkModeEnabled=null, versionCode=null, versionName=null, applicationId=null, testApplicationId=null, testInstrumentationRunner=null, testHandleProfiling=null, testFunctionalTest=null, signingConfig=null, resConfig=null, mBuildConfigFields={ }, mResValues={}, mProguardFiles=[], mConsumerProguardFiles=[], mManifestPlaceholders={}}。

这是 Build.gradle 文件。

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.+'
}
}

apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':SliderLibrary')
compile project(':Volley')
compile project(':Google Play Services Library')
compile project(':viewanimationLibrary')
}

android {
compileSdkVersion 19
buildToolsVersion "20.0.0"

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}


sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}

// Move the tests to tests/java, tests/res, etc...
androidTestCompile.setRoot('tests')

// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}

productFlavors {
flavor1 {
applicationId "com.homestar.provider"
}
}

}

最佳答案

看起来问题出在 Volley build.gradle 文件中。您使用 gradle 版本 1.0.0 及更高版本,但方法 testPackageName 自此版本重命名为 testApplicationId 。您可以在 Android Tools Project Site 上找到版本的所有更改

关于android - 找不到参数 [com.android.volley.tests] 的方法 testPackageName(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29916915/

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