skip to Main Content

I updated the target API level (targetsdkversion) of the project from 33 to 34. The build process was successful.My build was successful then upload the app bundle.

Warning Message Image:
warning message

The error message is still showing after updates in inbox

Error Message in inbox:
Error message

2

Answers


  1. You need to update the compileSdkVersion to 34 and the targetSdkVersion to 34 like this:

    In your android/app/build.gradle

    targetSdkVersion 34
    
    compileSdkVersion 34
    
    Login or Signup to reply.
  2. Google has changed its policy (to only 1-year-old Target API).

    open your android/app/build.gradle

    change:

    targetSdkVersion 31
    

    to:

    targetSdkVersion 34
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search