MVP-ARMS 加入kotlin支持

本文介绍如何在mvparms框架里加入kotlin支持,以便使用kotlin开发。
关于大神的mvparms框架就不多说了。感谢一波先:https://github.com/JessYanCoding/MVPArms
集成过程中参考到的博客有:
https://www.cnblogs.com/figozhg/p/6718654.html(kotlin+dagger2一般姿势)
https://blog.csdn.net/qq_36707431/article/details/80811176(出现构建完提示3rd-party Gradle plug-ins may be the cause错误的解决方法。注意其中的操作路径是:点击studio运行按钮那里的【edit configurations...】

操作步骤:

  • 直接使用mvparms templates 新建全家桶,然后在Source Language选项选择kotlin 就ok了
154553.png

接下来AndroidStudio会自动为你添加Kotlin的build.gradle依赖
但是,自动添加的可能并不够。
【主要是dagger2难以变异的问题】

这时候就用得上开头提到的两篇博客了。配置后的build.grade文件类似于:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
kapt {
    generateStubs = true
}
android {
...
}
dependencies {
    annotationProcessor rootProject.ext.dependencies["dagger2-compiler"]
    kapt 'com.google.dagger:dagger-compiler:2.15'
    implementation 'com.google.dagger:dagger:2.15'
}
  • 这个时候编译可能还会遇上一个问题:

TIM图.png

解决方案在: https://blog.csdn.net/qq_36707431/article/details/80811176

  • 操作完后再删除一下build/文件夹
    (感谢这位老哥!!)

你可能感兴趣的:(MVP-ARMS 加入kotlin支持)