skip to Main Content

Android Studio – An API level of 31 is not supported by this compiler. Please use an API level of 30 or earlier

I upgrade existing android project to API level 31. I use Java as the language. I changed the build.gradle compileSdkVersion 31 defaultConfig { applicationId 'com.app.app' minSdkVersion 16 targetSdkVersion 31 versionCode 91 versionName '4.0.1' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" multiDexEnabled true } But I…

VIEW QUESTION
Back To Top
Search