LoginSignup
4
4

More than 5 years have passed since last update.

Android Studio 2.3 (Gradle 2.3.0)でDatabindingがビルドエラーになるときの対処方法

Last updated at Posted at 2017-03-07

下記の方法で対処した。

app/build.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'

..省略

dependencies {
    apt 'com.android.databinding:compiler:2.3.0'
}

参考

4
4
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
4
4