How do I use IntelliJ (not Android Studio) to buil...
# intellij
c
How do I use IntelliJ (not Android Studio) to build a library for Android consumption? Googling for it but not finding much
a
Do you need to use Android stuff or just regular JVM stuff?
c
No, I don’t need the android sdk at all for the library. The library contains just some data classes in Kotlin
c
Thanks for that
a
I dont think that its needed. A simple kotlin project with a build.gradle is usually sufficient to be included inside an Android project
c
@Andreas Sinz Yup. That was all that was needed. Thanks!