<How to share kotlin code between a project and gr...
# stackoverflow
r
How to share kotlin code between a project and gradle? I have an appium project written in kotlin and a build.gradle.kts. I'm using InteeliJ but also need to invoke the tests from the command line. I have a Datasource.kt file which I would like to access both in the code and in gradle; right now it's just duplicated in the build.gradle.kts. How can I effectively share the Datasource.kt file so that I have a single source of truth throughout the project? Code example: if (Datasource.getValue("key").isFeatureEnabled()) { // check that...