Android Question Installing the application

Sergey_New

Well-Known Member
Licensed User
Longtime User
When installing an application created using SdkVersion=29 on a device with Android 14, a message appears stating that the application was created in an old version. Is there any way to get rid of this message so as not to scare the user?
 

JohnC

Expert
Licensed User
Longtime User
You said "SDKVersion=29" but is that the "targetSDKVersion"? I ask because it seems like the "older version of android" warning should only be displayed if the TargetSDKVersion is set to 22 (android 5.1) or lower when it is run on devices with android 10 or higher:

 
Upvote 0

Sergey_New

Well-Known Member
Licensed User
Longtime User
Yes, this is targetSDKVersion=29
 
Upvote 0

JohnC

Expert
Licensed User
Longtime User
Then I think the only way to prevent that warning is to raise the targetSDKVersion to 33 - but this may cause issues with your app, so you will need to test it.

This page lists some potential problems you might run into when raising the targetSDKVersion:

 
Upvote 0

Sagenut

Expert
Licensed User
Longtime User
I think it's enough to explain the thing to who will install your app.
Because anyway the real problem in installing apps out of the market is to trust the developer.
 
Upvote 0
Top