Reputation: 25
Recently I found out a few apps I made in the past 2 months are not working on new phones, but working fine on old phones. I tested some of my old apps that are working fine on both new and old phones. I must be missing something related to the code, I only have basic skills related to coding and want to fix these apps.
BuildTools = "29"
MinSdk = 16
TargetSdk = 29
CompileSdk = 29
In my Build.Gradle:App section, I added this code, because without this code, I was not able to generate a signed bundle.
lintOptions {
checkReleaseBuilds false
Upvotes: 0
Views: 307
Reputation: 567
With Android 10 update there are many modifications in permissions and notifications, for example you need notification channel to generate notifications android Oreo but it will work fine on other devices, You need to verify all permissions and modifications are done with new devices and you need to update code according to it.
Upvotes: 2