Android Question apk not visible on tablet in play store

dkarnik

Member
Licensed User
Longtime User
i have updated 2 applications (because of admob, 1.8., google-play-services, ...) and now they are not visible on google play store on my 2 tablets

in develeper console, in apk section i have:
Supported Android devices: 5767 devices
API levels: 4+
Screen layouts: 4 screen layouts (small, normal, large, xlarge)
Localizations: default + 57 languages
Features: 5 features
android.hardware.LOCATION
android.hardware.location.GPS
android.hardware.location.NETWORK
android.hardware.screen.PORTRAIT
android.hardware.TOUCHSCREEN

Required permissions: 11 permissions
android.permission.ACCESS_COARSE_LOCATION
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_LOCATION_EXTRA_COMMANDS
android.permission.ACCESS_NETWORK_STATE
android.permission.INTERNET
android.permission.READ_EXTERNAL_STORAGE
android.permission.READ_PHONE_STATE
android.permission.RECEIVE_BOOT_COMPLETED
android.permission.VIBRATE
android.permission.WAKE_LOCK
android.permission.WRITE_EXTERNAL_STORAGE



and my manifest editor is:
AddManifestText(
<uses-sdk android:minSdkVersion="4" 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$")
'End of default text.

'AdMob
AddApplicationText(
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>'
)
'End of AdMob



can anyone help me and tell me the possible reason and solution?

thank you...
 

eps

Expert
Licensed User
Longtime User
I know this isn't going to necessarily help, but I usually keep a backup of code before making any substantial changes. Then you would be able to go back and see what the differences are. This will only work if you've kept a copy of a previous APK, which you could rename to a ZIP and then take a look at the contents of the manifest.

I guess if you install the APK on to the devices the App works, without any errors?

What are the Apps in the Google Play Store? Might be able to take a look and see if they can be installed on all of my devices.

Just to confirm, you haven't added any other permissions or changed the code apart from the Admob changes?

Did the Tablets have Google Play installed on them as standard?
 
Upvote 0

dkarnik

Member
Licensed User
Longtime User
Erel: AddManifestText(<uses-feature android:name="android.hardware.telephony" android:required="false"/>) did not help

i have found out the reason. it's LEADBOLT.
but i still do not know the solution, anyone else has the same problem?
 
Upvote 0

dkarnik

Member
Licensed User
Longtime User
something liki this?
<uses-feature android:name="android.hardware.LOCATION" android:required="false"/>
<uses-feature android:name="android.hardware.location.GPS" android:required="false"/>
<uses-feature android:name="android.hardware.location.NETWORK" android:required="false"/>
did not help
or did i do it wrong?
 
Upvote 0
Top