LoginSignup
4
4

More than 5 years have passed since last update.

@android:style/Theme.Material.Light.DarkActionBar requires API level 21

Last updated at Posted at 2014-06-27

新しくTheme.Materialを使おうとしたら上記エラーがでて困ったのですが、これは下記の設定で治ります。

app.gradleでは以下のように変更してください。

android {
compileSdkVersion 'android-L'
buildToolsVersion '20.0.0'
defaultConfig {
minSdkVersion 14
targetSdkVersion 'L'
....
}

ずっとまえ、Honycombでも似たようなことをしたのですがこれもそれと同じでした。

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