Issue
I created a Basic activity in Android Studio and tried to run it on my Physical Device but while building the application is show an error under The minCompileSdk (31) specified in a:
The minCompileSdk (31) specified in a
https://pastebin.com/x0PH4aQC
The Build error:
Build:failed
https://pastebin.com/CTiV72eK
Solution
Please change compileSdkVersion
in your project's app module build.gradle
file to 31:
android {
compileSdkVersion 31
...
}
Answered By - Sergey
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.