Cant build android studio project with compiledSdkVersion 17 -
i have build project compiledsdkversion 17
, worked in eclipse since moved adt project
android stduio
following errors:
error:(3) error retrieving parent item: no resource found matches given name 'android:widget.material.spinner.underlined'. error:(3) error retrieving parent item: no resource found matches given name 'android:widget.material.spinner.underlined'. error:(15) error retrieving parent item: no resource found matches given name 'android:textappearance.material.large.inverse'. error:(21) error retrieving parent item: no resource found matches given name 'android:textappearance.material.medium.inverse'. ...etc..
my build.gradle
file looks this:
apply plugin: 'com.android.application' android { dexoptions { javamaxheapsize "4g" } lintoptions { disable 'validfragment' } compilesdkversion 17 buildtoolsversion '23.0.3' defaultconfig { applicationid "de.valve.halflife3" minsdkversion 14 targetsdkversion 17 versionname "1.1.0" multidexenabled true } } dependencies { compile 'com.google.android.gms:play-services:+' }
am missing support library? can´t solve problem.
Comments
Post a Comment