Android Question I already Published but Google Play is not showing my app

naifnas

Active Member
Licensed User
hi all
I already Published but Google Play is not showing my app
when I click on ( view on Google Play ) i find it
but when I search but Google Play is not showing my app
Published from one week
I change name but same issue
I change name package name but same issue.
I change old to 18+ but same issue.
all countries unavailable

this manifest
B4X:
'This code will be applied to the manifest file during compilation.

AddManifestText(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="28"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>
    <uses-permission
  android:name="android.permission.READ_PHONE_STATE"
   />
<uses-permission
  android:name="android.permission.READ_EXTERNAL_STORAGE"
   />
<uses-permission
  android:name="android.permission.CAMERA"
   />
<uses-permission
  android:name="android.permission.WRITE_EXTERNAL_STORAGE"
  />
    )
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:largeHeap, "true")
SetApplicationAttribute(android:usesCleartextTraffic, "true")
'End of default text.
AddPermission(android.permission.READ_EXTERNAL_STORAGE)
AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)
AddPermission(android.permission.CAMERA)
AddPermission(android.permission.READ_PHONE_STATE)

'********************  Required for file provider *************************
AddApplicationText(
  <provider
  android:name="android.support.v4.content.FileProvider"
  android:authorities="$PACKAGE$.provider"
  android:exported="false"
  android:grantUriPermissions="true">
  <meta-data
  android:name="android.support.FILE_PROVIDER_PATHS"
  android:resource="@xml/provider_paths"/>
  </provider>
)
CreateResource(xml, provider_paths,
   <external-files-path name="name" path="shared" />
)
 

naifnas

Active Member
Licensed User
B4X:
#Region  Project Attributes
    #ApplicationLabel: xxxxxxx
    #VersionCode: 8
    #VersionName: 8
    #IncludeTitle: False
    #LibraryVersion: 8
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: portrait
    #CanInstallToExternalStorage: False
    #additionaljar: com.android.support:support-v4
#End Region
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
what is the name of the app on google play or the package full name. (com.whatever)
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
I can see the app but it's all in arabic so I don't know what to search for.
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
it doesn't seems to be indexed yet or it doesn't show up due to the lack of installs.
 
Upvote 0

naifnas

Active Member
Licensed User
thanks for replay
I have poor quality apps, no installs, and the same steps but google play is showing it
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
if it is a new app with new package name it might take some days before it will appear in the search.
 
Upvote 0

naifnas

Active Member
Licensed User
yes this new
but same old app
i Published app before one week and not find it
after I change package name it
new app same not find
 
Upvote 0

asales

Expert
Licensed User
Longtime User
I think the problem is the app index Google search algoritm, but I don't know how it works.
I put 2 apps in the same day (1 month ago). One those app I can find in the search using the title, but the other I can't.
 
Upvote 0
Top