Home > Back-end >  problem in my first project of android studio
problem in my first project of android studio

Time:12-26

When I was creating a new project it showed this warning and I do not understand what is it for. This is the image of the warning it is showing.enter image description hereenter image description here enter image description here

CodePudding user response:

Try changing the compileSdk to 31 instead of 32 in your build.gradle.

enter image description here

CodePudding user response:

change your compileSdkVersion and targetSdkVersion in build.gradel file

compileSdkVersion 31

targetSdkVersion 31
 
  • Related