“:app”和“:dynamicfeature”的“com.android.test”模块均失败,原因是“集合具有多个元素,”:“测试的应用程序ID”

2jcobegt  于 2022-12-28  发布在  Android
关注(0)|答案(2)|浏览(125)

我尝试(在一个示例应用中)用一个":test"模块来测试主模块":app"和":dynamicfeature"模块,为此我使用了"com.android.test" gradle插件。
我的":app"模块运行得很好。它从我的":dynamicmodule"示例化了一个基本视图。
不幸的是,我的":test"模块在"processDebugManifest"期间失败。
错误为:
未能计算任务":test:processDebugManifest"属性"testedApplicationId"的值。
集合具有多个元素。
事实上,测试模块似乎不接受实现"com. android. application"模块"com. android. dynamic-feature"模块
知道吗?谢谢
下面是我的build. gradle(:test)

plugins {
   id 'com.android.test'
   id 'kotlin-android'
}
android {
   compileSdkVersion 30
   buildToolsVersion "30.0.2"
   publishNonDefault true

   defaultConfig {
       minSdkVersion 21
       targetSdkVersion 30
       testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
   }

   buildTypes {
       release {
           minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
       }
       debug {

       }
   }
   compileOptions {
       sourceCompatibility JavaVersion.VERSION_1_8
       targetCompatibility JavaVersion.VERSION_1_8
   }
   kotlinOptions {
       jvmTarget = '1.8'
   }
   targetProjectPath ':app'
   targetVariant 'debug'
}
dependencies {
   implementation project(":app")
   implementation project(":dynamicfeature")
   implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
   implementation 'androidx.core:core-ktx:1.3.2'
   implementation 'androidx.appcompat:appcompat:1.2.0'
   implementation 'com.google.android.material:material:1.2.1'

   implementation 'androidx.test.ext:junit:1.1.2'
   implementation 'androidx.test.espresso:espresso-core:3.3.0'
   implementation 'androidx.test:core:1.0.0'}

下面是我的build. gradle(:app)

plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.2"

    defaultConfig {
        applicationId "com.sample.app"
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
    dynamicFeatures = [':dynamicfeature']
}

dependencies {

    implementation "com.google.android.play:core:1.8.3"
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.3.2'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.2.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
    implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}

下面是我的构建版本。gradle(:dynamicfeature)

plugins {
    id 'com.android.dynamic-feature'
    id 'kotlin-android'
}
android {
    compileSdkVersion 30
    buildToolsVersion "30.0.2"

    defaultConfig {
        publishNonDefault true
        applicationId "com.sample.module"
        minSdkVersion 21
        targetSdkVersion 30
    }

    buildTypes {
        release {
            minifyEnabled false
        }
        debug{

        }
    }
}

dependencies {
    implementation project(":app")
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.3.2'
    testImplementation 'junit:junit:4.+'
}
relj7zay

relj7zay1#

测试www.example.com导致的错误gradle.build具有2个依赖项:
实现项目(“:app”)实现项目(“:dynamicfeature”)
默认情况下,它具有应用程序依赖关系,因此集合将为:“app,app,dynamicfeature”。这就是为什么您得到的错误消息是“集合有多个元素”。
如果您删除这两个依赖项,错误将消失,尽管我知道您会从代码中得到其他错误。
这是Android/Gradle的问题,因为此高级测试设置https://developer.android.com/studio/test/advanced-test-setup#use-separate-test-modules-for-instrumented-tests不适用于多模块项目

osh3o9ms

osh3o9ms2#

不幸的是,我找不到任何解决这个bug/行为的方法。我将继续使用androidTest sourceSet。
当我尝试从:test模块中删除:app依赖项时,TestVariantImpl#calculateTestedApplicationId仍然在elements上获得2个清单路径。
这些文件引用发生错误,这应该是单一大小的集。

["/{project-path}/{app-module}/build/intermediates/packaged_manifests/debug",
"/{project-path}/{dynamic-feature-module}/build/intermediates/packaged_manifests/debug"]

异常调用方:试验变体植入物#198

相关问题