[Solved] Requires libraries and applications that depend on it to compile against version 33 or later of the Android APIs error android studio

Android Mohit Mozumder

Problem:

Suddenly i got an error in my Android Studio that is -

requires libraries and applications that depend on it to compile against version 33 or later of the Android APIs


Solution:

To fix this error try to-

Increase compileSdk, targetSdk values from 32 to 33 in build.gradle file (app level).


if its not working then -


Just Decrease dependencies in build.gradle to old values:

implementation 'androidx.core:core-ktx:1.8.0' 
implementation 'androidx.appcompat:appcompat:1.5.0'


Thank you for reading this article. If you feel any further problem feel free to contact us.