Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android app is published, but not visible anywhere in Google Play

I have tested this app on the Android emulators, phones, tablets, and Google TV. Its works. When I published it Google Play, the app is not visible. Below is the manifest. I sincerely appreciate any insight as to the problem. Thank- you.

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.zzzz.xyzxyz"     android:installLocation="internalOnly"     android:versionCode="4"     android:versionName="1.4" >     <uses-sdk         android:minSdkVersion="8"         android:targetSdkVersion="15" />     <uses-feature         android:name="android.hardware.touchscreen"         android:required="false" />     <uses-feature         android:name="android.hardware.microphone"         android:required="false" />     <uses-permission android:name="android.permission.WRITE_SETTINGS" />     <uses-permission android:name="android.permission.RECORD_AUDIO" />     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />     <uses-permission android:name="android.permission.READ_PHONE_STATE" />     <supports-screens         android:anyDensity="true"         android:largeScreens="true"         android:normalScreens="true"         android:resizeable="true"         android:smallScreens="true" />     <application         android:icon="@drawable/ic_launcher"         android:label="@string/app_name" >         <activity             android:name=".AlbumSelectorActivity"             android:label="@string/app_name"             android:launchMode="singleTask" >             <intent-filter>                 <action android:name="android.intent.action.MAIN" />                 <category android:name="android.intent.category.DEFAULT" />                 <category android:name="android.intent.category.LAUNCHER" />             </intent-filter>         </activity>         <activity             android:name="xyzxyzAppWidgetActivity"             android:noHistory="true" >         </activity>         <activity             android:name=".SelectableImagesActivity"             android:noHistory="true" >         </activity>         <activity             android:name=".SelectedImageActivity"             android:noHistory="true"             android:windowSoftInputMode="stateHidden|adjustResize" >         </activity>         <activity             android:name=".ReplayAlbumActivity"             android:noHistory="true"             android:windowSoftInputMode="stateAlwaysHidden|adjustResize" >         </activity>         <activity android:name=".PreferenceHelpActivity" >             <category android:name="android.intent.category.PREFERENCE" >             </category>         </activity>         <activity android:name=".PreferenceSettingsActivity" >             <category android:name="android.intent.category.PREFERENCE" >             </category>         </activity>         <service android:name=".ReplayAlbumService" >             <intent-filter>                 <action android:name="com.zzzz.xyzxyz.ReplayAlbumService" />             </intent-filter>         </service>         <activity             android:name=".xyzxyzAppWidgetConfigureActivity"             android:icon="@drawable/ic_launcher"             android:label="@string/appwidget_name" >             <intent-filter>                 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />             </intent-filter>         </activity>         <receiver             android:name=".xyzxyzAppWidgetProvider"             android:icon="@drawable/ic_launcher"             android:label="@string/appwidget_name" >             <intent-filter>                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />             </intent-filter>             <meta-data                 android:name="android.appwidget.provider"                 android:resource="@xml/appwidget_provider" />         </receiver>     </application> </manifest> 
like image 891
pgulotta Avatar asked Mar 28 '12 14:03

pgulotta


People also ask

Why is my published app not showing on Google Play?

If you can't find your app on some Android devices, it's possible that those devices aren't supported or are excluded by your app. Learn how to review your app's device compatibility and excluded devices. Also, make sure that the Android devices you're using are supported for use with Google Play.

Why is my android app not showing in Play Store?

You can try clearing the Play Store cache to see if that fixes the issue. Step 1: Long press on the Play Store app icon and then tap on the info icon from the menu that pops up. Step 2: Go to Storage and tap on the Clear cache button at the bottom. Restart the Play Store app to see if it shows your installed apps.

Why do some apps not appear on Google Play?

The most common explanation for why you can't download certain apps from Google Play is that the app's developers have marked it as "incompatible" with your device. You'll see a message stating "this app is not available for your device" or "this app is not available for any of your devices" in this case.

When you're published How long did it take to be visible on the Play Store?

Typically, three days is the standard time for a mobile app to be reviewed and approved on Google Play Store.


2 Answers

Just try it on your browser setting the link:

https://play.google.com/store/apps/details?id=yourpackagename   

even if it's not indexed in the search, if it's published you will find it, if not, somethings wrong then

like image 66
ricvieira Avatar answered Oct 07 '22 21:10

ricvieira


I ran into this problem (or a similar one). I submitted my app on the internal test track and soon after, in the Google play Console, it said my app is Published and provided a link to go to Google Play Store to download the app. However, when I clicked the link, it would tell me the requested URL could not be found. I also could not find the app in the Google Play Store by searching for it.

The solution:

Apparently, I had to add myself to the testers group and more importantly - opt in. I found the opt-in link in Google play Console:

  1. On the left, click "Release Management"
  2. "App releases"
  3. Go to the version you have uploaded and click "MANAGE".
  4. Click on "Manage testers". There, you will find an opt-in URL.
like image 35
MrAliB Avatar answered Oct 07 '22 20:10

MrAliB