zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

he ‘kotlin-android-extensions‘ Gradle plugin is deprecated. Please use this migration guide

AndroidKotlingradle is this use plugin Guide
2023-09-27 14:27:38 时间

将 

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'kotlin-android-extensions'
    id 'com.mob.sdk'
    id 'fastdex.app'
}

  移除

  id 'kotlin-android-extensions' 
 

替换为

android {
    ...
    buildFeatures {
        viewBinding true
    }
}

替换findviewById

官方文档:https://developer.android.com/topic/libraries/view-binding/migration