Open IDisouki2021 opened 2 years ago
You shouldn't need kts to get this to work, it looks like you're just using the wrong version number.
Try:
testImplementation 'com.appmattus.fixture:fixture:1.2.0'
I'm also experiencing this exact issue under a kts gradle build and using the latest version
testImplementation("com.appmattus.fixture:fixture:1.2.0")
import com.appmattus.kotlinfixture.kotlinFixture // Unresolved reference: appmattus
I used the files attached but have been unable to reproduce; well that is unless I have a mismatch between the type of test (unit test in src/test vs instrumentation in src/androidTest) and the dependency definition (testImplementation vs androidTestImplementation)
Hello,
First, thank you for the great library.
Cannot import
import com.appmattus.kotlinfixture.kotlinFixture
errorUnresolved reference: appmattus
\build.gradle(My Application) file: // Top-level build file where you can add configuration options common to all sub-projects/modules.
build.gradle(app module) file:
settings.gradle file:
ExampleUnitTest file:
Should I use kts to get it to work?