LoginSignup
0
0

More than 5 years have passed since last update.

【Android】Expected resource of type string [ResourceType] のエラーの対処法

Posted at

Generate Signed Apkをしたときにエラーが出たので対処法のメモです。

結論

gradleに以下を追記

android {
  lintOptions {
    disable "ResourceType"
  }
}

エラー内容

Error: Expected resource of type string [ResourceType]

参考

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