Is it possible to add Android Kotlin files to a Cordova Plugin project or is only Java supported?
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
version="0.0.1">
<!-- android -->
<platform name="android">
<source-file src="src/android/nl/companyname/kotlin/ScanMode.kt" target-dir="src/nl/companyname/kotlin"/>
</platform>
</plugin>
The Java files show up, but the Kotlin files don't. I also don't see any plugin that has it.