Home > Software design >  I am getting an error while running the project in android studio
I am getting an error while running the project in android studio

Time:12-13

I am getting this error

I want to build for this project

CodePudding user response:

You need to upgrade min SDK version in build.gradle file to 21

minSDKVersion=19

replace to

minSDKVersion=21
  • Related