show app in playstore

Cor

Active Member
Licensed User
Longtime User
How to show app in play store with phone feature on a tablet which has no phone?
 

Jaames

Active Member
Licensed User
Longtime User
Do you mean this ?

B4X:
Dim Intent1 As Intent
      Intent1.Initialize(Intent1.ACTION_VIEW,"market://detailsid=yourapp.package.name")
StartActivity(Intent1)

This will open your app link in google play app.

Where "yourapp.package.name" is the name of your app on the market - google play.
 
Upvote 0

Cor

Active Member
Licensed User
Longtime User
Thanks,

No i mean , i have written an app which has can call a number.

It is a app for my son's footbal team to show score etc

For Phone's it shows up in the app store, not for tablet with no phone

search for Margriet in app store

It seems that if you have a tablet with no phone capability it is not shown
up in the play store

grCor
 
Upvote 0

cmweb

Active Member
Licensed User
Longtime User
That's correct.

Without phone capabilities, the device is not compatible with your app.

You could remove the call permission from manifest, but then your app wouldn't be able to call even if the device is a phone.

So I would recommend to create second app without call features. Call that app "tablet edition"...

Best regards,

Carsten
 
Upvote 0

NeoTechni

Well-Known Member
Licensed User
Longtime User
Do you mean this ?

B4X:
Dim Intent1 As Intent
      Intent1.Initialize(Intent1.ACTION_VIEW,"market://detailsid=yourapp.package.name")
StartActivity(Intent1)

This will open your app link in google play app.

Where "yourapp.package.name" is the name of your app on the market - google play.

You missed the ?

B4X:
Intent1.Initialize(Intent1.ACTION_VIEW,"market://details?id=yourapp.package.name")
 
Upvote 0
Top