'An application created by me crashes since I updated the android version of my phone
I had created a multiple choice quiz game about a year ago and while creating it, I was using my personal phone to test it.
After the latest significant update of the android version the application start stopping ( I own an Oppo Reno with android version 11 and ColorOS version 11.1).
While other applications (always created by me with Android Studio) work correctly instead this one stops abnormally. I do not understand what the problem is since at the code level I have not opened it since I finished it and precisely because other applications still work correctly. The current version of Android studio is the Bumblebee and at the time I had the ArticFox version.
The SDK version was always the same for the emulator in Android studio.
I am a student and it was an application that it was rated positively (so it had no problems at the code level)
Solution 1:[1]
Change these in your Android app module build.gradle in the android block with your appropriate versions:-
android{
compileSdkVersion 30
buildToolsVersion "30.0.2" }
If this doesn't work please checkout latest version and update.
For more go to : https://developer.android.com/studio/build
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
