<% if (isJekyll) { %>--- title: ns native add kotlin position: 3 ---<% } %>
Adds a newly generated Kotlin file, which includes a class with the specified name, placing it in the appropriate directory.
Kotlin usage requires that the useKotlin
property is set in gradle.properties
, the command will set this to true
.
Usage | Synopsis |
---|---|
Kotlin | $ ns native add kotlin <Kotlin class name> |
<Kotlin class name>
is the fully qualified name of theClass
to create, e.g.org.nativescript.SomeClass
<% if(isHtml) { %>
Command | Description |
---|---|
native add swift | Generates and adds a Swift file containing a class of the given name. |
native add objective-c | Generates and adds Objective-C files containing an interface of the given name. |
native add java | Generates and adds a Java file containing a class of the given name. |
native add kotlin | Generates and adds a Kotlin file containing a class of the given name. |
<% } %> |