0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Kotlin Android Extensions

Posted at

Android studio 4.1以上ではKotlin Android Extensionsが標準で入っていないようなので、自分で入れる必要があります。

appの下の、build.gradleを開き(二つあるのでpluginsが入っているほう)、少しいじる。

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'kotlin-android-extensions'
}

最後に青のバーが上のほうに表示されるのでSync Nowをクリック。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?