I am trying to add `androidAndroidTest` based on t...
# multiplatform
z
I am trying to add
androidAndroidTest
based on this article by Touchlab (https://touchlab.co/understanding-and-configuring-your-kmm-test-suite/). I am getting
KotlinSourceSet with name 'androidAndroidTest' not found.
even though I have the following in the
kotlin > sourceSets
:
Copy code
val androidAndroidTest by getting  {
          dependencies {
            implementation("androidx.test.ext:junit:1.1.3")
            implementation("androidx.test.ext:junit-ktx:1.1.3")
            implementation("androidx.test.espresso:espresso-core:3.4.0")
          }
        }
Any idea what I am missing?
I think I got it
Copy code
Multiplatform/Android-V2-SourceSetLayout: Found used source directory /Users/zsolt/Development/archdemo/library/resources/src/androidAndroidTest/kotlin
This source directory was supported by: Multiplatform/Android-V1-SourceSetLayout
Current KotlinAndroidSourceSetLayout: Multiplatform/Android-V2-SourceSetLayout
New source directory is: /Users/zsolt/Development/archdemo/library/resources/src/androidInstrumentedTest/kotlin