Hi !
I’m creating aar library for unity, that uses Kotlin. I’ve successfully added all dependencies via GoogleJarResolver. (see recommendations also here AAR library with Kotlin )
But also I need to
- add
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
in the beginning of build.gradle file.
- Add one library not like “implementation” , but as “kapt” (kotlin annotation processor)
How can I do it?