我正在使用@ParcelizeKotlin语言在Android开发中使用该功能.
要使用它们,我在build.gradle文件中进行了以下修改.
apply plugin: 'kotlin-android-extensions'
Run Code Online (Sandbox Code Playgroud)
然后
androidExtensions {
experimental = true
}
Run Code Online (Sandbox Code Playgroud)
我成功使用了上述功能.但是,是否建议将它们用于生产发布或仅用于开发目的?
android kotlin kotlin-extension kotlin-android-extensions gradle-experimental