Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio error This support library should not use a lower version (19)

Tags:

android

I created the project then error message:

Error:(23, 12) This support library should not use a lower version (19) than the targetSdkVersion (20)

error code is here: compile 'com.android.support:appcompat-v7:19.+'

like image 924
Rong Sir Avatar asked Aug 03 '14 15:08

Rong Sir


1 Answers

Change

compile 'com.android.support:appcompat-v7:19.+'

to

compile 'com.android.support:appcompat-v7:20+'

first open SDK Manager and update the support Libary. or change the targetSDKVersion to 19

the filename is 'build.gradle'

like image 164
Itzik Samara Avatar answered Sep 25 '22 00:09

Itzik Samara