Android application published but not accessible (or downloadable) in the Play Store

二次信任 提交于 2019-12-25 02:15:40

问题


I have been talking with the support of the playstore for over 4 months because I have published an application but despite it being on the playstore it is not possible to install it (or access the related page to download).

The support has suggested me to create a new app and republish it, I did it but now I have two identical published apps that have the same problem.

In the Google Play Console there are no errors reported with the publication but of course the download data are 0.

Can you kindly verify the error that returns in order to understand if it is a problem that has already happened to someone, so in order to find the solution?

This is the link to the second app published (identical to the first but with different name): https://play.google.com/store/apps/details?id=apps_script_articoli_e_tutorial.free.michelepisani.it.appsscriptarticolietutorial

This is the manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="apps_script_articoli_e_tutorial.free.michelepisani.it.appsscriptarticolietutorial">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity android:name="apps_script_articoli_e_tutorial.free.michelepisani.it.appsscriptarticolietutorial.MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

Thanks in advance.

EDIT: Although the app is for italian language I have just made it available to all countries in order to give everyone the opportunity to test the behavior in the play store. Thanks


回答1:


This is a bug in the Play store and nothing to do with your app. I have made sure that the right people are looking at it. I'm really sorry you've had such a poor experience with Play support, I'll try to investigate to find out why it happened and make sure it doesn't happen to anyone else.



来源:https://stackoverflow.com/questions/51680536/android-application-published-but-not-accessible-or-downloadable-in-the-play-s

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!