Android Question Developer console upgrade app permission problems

hookshy

Well-Known Member
Licensed User
Longtime User
I got the below notification on my developer console , and somehow It is clear that the app could not show on market after publishing a new version of apk .
Could someone give me some hints why can't I publish version 15 of app?
Problem apeared after unpublishing version 14 and republish app with version 15.

version 15 manifest editor added more from version 14 : "does not apear on market"
AddReceiverText(hsman,
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>)

Version 14 that had published witout problems had the folowing features , publishing worked well
  • android.hardware.LOCATION
  • android.hardware.location.NETWORK
  • android.hardware.screen.PORTRAIT
  • android.hardware.TELEPHONY
  • android.hardware.TOUCHSCREEN
Console message notification:
Previously active APKs supported more devices than those in the draft configuration. Some devices will not receive upgrades. Less
  • Devices currently running version 11 are no longer supported by the current configuration. Such devices will not receive upgrades.
    API levels in range 4+ and
    Screen layouts containing any of [small, normal, large, xlarge] and
    Features containing all of [android.hardware.screen.PORTRAIT, android.hardware.TELEPHONY, android.hardware.TOUCHSCREEN] but excluding any of [android.hardware.LOCATION, android.hardware.location.NETWORK]
 
Top