Create a Kotlin library in Android Studio

前端 未结 2 765
再見小時候
再見小時候 2021-02-05 01:58

I am very new to both the Android and JVM platforms. Using Android Studio, I would like to create an Android app and put most of my business logic in a library. I would also li

2条回答
  •  野的像风
    2021-02-05 02:48

    Create Android studio project After that create as many as module which are basically Android library You can select the language of module (java/kotlin)

    Extra Upload your module to github and use jitpcak tool to make your module a library like this Implementation 'com. My. Module:1.0'

    And use your module any future project

提交回复
热议问题