App not found by Tables

luke2012

Well-Known Member
Licensed User
Longtime User
Hi to all,
I have published an app that I tested on my Galaxy Tab2 10,1".

When I open the Play Store and search for my app I cannot find it!

Which is the reason ?
My manifest or the libraries that I used (see files attached) ?
 

Attachments

  • manifest.txt
    478 bytes · Views: 197
  • libs.jpg
    libs.jpg
    54.7 KB · Views: 231

luke2012

Well-Known Member
Licensed User
Longtime User
My Manifest

B4X:
AddManifestText(
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-sdk android:minSdkVersion="4"/>
<supports-screens android:largeScreens="true" 
    android:normalScreens="true" 
    android:smallScreens="true" 
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
AddApplicationText(<activity android:name="anywheresoftware.b4a.objects.preferenceactivity"/>)

I saw the suggested post.

In my Manifest I not have ""android.permission.READ_PHONE_STATE" and "android.permission.SEND_SMS".

If I add the statement that you suggested in the post :

B4X:
AddManifestText(<uses-feature android:name="android.hardware.telephony" android:required="false"/>)

Could be some problems about this code ?

B4X:
Dim p As PhoneId
lc.Initialize("lc", p.GetDeviceId, publicKey, "kljdflkf".GetBytes("UTF8"))
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
After you compile your app, there is a "show permissions list" button. It will show you all the permissions that are required for your app.
The READ_PHONE_STATE will be there if you are using PhoneId.

Could be some problems about this code ?
Yes. You can however use a Try / Catch block to catch the error.
 
Upvote 0

luke2012

Well-Known Member
Licensed User
Longtime User
Thanks for the reply.

The READ_PHONE_STATE is not mandatory permission for my app but I'm using the license manager that require it.

So my question is :

My app will be compatible only with device that have the phone hardware?
 
Upvote 0
Top