generate sigend apkでError: Expected resource of type string [ResourceType]

アプリをリリースしようとgenerate sigend apkを実行すると、以下のエラーが出てきた。

Information:Gradle tasks [:app:assembleRelease]
/パス/Fragment$$ViewBinder.java
  Error:(53) Error: Expected resource of type string [ResourceType]
Information:1 error
Information:0 warnings
Information:See complete output in console

解決方法

このリンクによると... stackoverflow.com

以下をapp/build.gradleに追加する

android {
  lintOptions {
    disable "ResourceType"
  }
}

エラー消えました、解決!

Information:Gradle tasks [:app:assembleRelease]
Information:BUILD SUCCESSFUL
Information:Total time: 38.194 secs
Information:0 errors
Information:0 warnings
Information:See complete output in console