</>AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")</>
Hi all, above is my old manifest. When I try updating my app to targetSdk 28
e.g. <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="28"/>
Then I test with 2 devices, Sony Xperia running Android 6.0.1 and Samsung Galaxy S9 running Android 10. I manage to download and run the app in my Samsung device but I'm unable to download it on my Sony device. It says that the app is not compatible. May I know where I did wrong? Thank you.
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")</>
Hi all, above is my old manifest. When I try updating my app to targetSdk 28
e.g. <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="28"/>
Then I test with 2 devices, Sony Xperia running Android 6.0.1 and Samsung Galaxy S9 running Android 10. I manage to download and run the app in my Samsung device but I'm unable to download it on my Sony device. It says that the app is not compatible. May I know where I did wrong? Thank you.