Android Question Warning message in Android telephone

manuelsalazar

Member
Licensed User
Hi :
I have been installed My BA4Av10 APP in Android-7 , now i'm installing to another telephones with android-9 , and send me the following message in the phone.

"This application has been created for an older version of android and it may not work well......"

Any idea what's wrong in the APP. ?



THANKS ON ADVANCED????
MANUEL SALAZAR
 

agraham

Expert
Licensed User
Longtime User
You must have something like
XML:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="28"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
in the manifest. It's just a warning that the targetSDKversion is for an earlier API. It will almost certainly work fine.
 
Upvote 0

manuelsalazar

Member
Licensed User
If i put targetSdkversion in manifest, compile and install in the phone the app , changes the objects like edittext , and buttoms, (the view of the objects change)
 
Upvote 0

Brian Dean

Well-Known Member
Licensed User
Longtime User
As @agraham says, the warning that you are seeing in you first post is only a warning; it is not an error. You can ignore it - there is nothing serious that needs fixing. So leave things as they are if you prefer them that way
 
Upvote 0
Top