I can not see my App published on the Play Store

1

A few days ago publish an App in play store ... But, I have the following problem:

"The Application is not displayed with the name I gave it in the Google Developer Console" with the name Mobile Parts Office "

But when looking for it with the name of the package "mx.gob.lahuerta.oficiadepartes" so if you find it

What do I have to do to find it with the name I give it from the Google Play Developer Console?

annex the manifest and build.gradle

Manifest

<?xml version="1.0" encoding="utf-8"?>

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

<protected-broadcast android:name="android.intent.action.MEDIA_MOUNTED" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".Splash"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".Login"
        android:screenOrientation="portrait"/>
    <activity android:name=".PreferenciasActivity"
        android:screenOrientation="portrait"/>
    <activity
        android:name=".Drawer"
        android:label="@string/title_activity_drawer"
        android:theme="@style/AppTheme"
        android:screenOrientation="portrait"/>
    <activity
        android:name=".Modificar"
        android:configChanges="orientation"
        android:parentActivityName=".Drawer"
        android:screenOrientation="portrait">
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value=".Drawer" />
    </activity>
    <activity android:name=".General"
        android:configChanges="orientation"
        android:parentActivityName=".Drawer"
        android:screenOrientation="portrait">
    <meta-data
        android:name="android.support.PARENT_ACTIVITY"
        android:value=".Drawer"/></activity>

    <activity android:name=".Creditos"
        android:configChanges="orientation"
        android:parentActivityName=".Drawer"
        android:screenOrientation="portrait">
    <meta-data
        android:name="android.support.PARENT_ACTIVITY"
        android:value=".Drawer"/></activity>

    <activity android:name=".Soporte"
        android:configChanges="orientation"
        android:parentActivityName=".Drawer"
        android:screenOrientation="portrait">
    <meta-data
        android:name="android.support.PARENT_ACTIVITY"
        android:value=".Drawer"/></activity>
</application>

build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "mx.gob.lahuerta.oficiadepartes"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile files('libs/mail.jar')
    android {
        useLibrary 'org.apache.http.legacy'
    }
    //compile 'org.apache.httpcomponents:httpcore:4.4.1'
    //compile 'org.apache.httpcomponents:httpclient:4.5'
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.mcxiaoke.volley:library:1.0.19'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile files('libs/picasso-2.5.2.jar')
}
    
asked by Sharly Infinitywars 08.06.2017 в 21:21
source

1 answer

1

The minimum sdk supported is 16 and you have defined "common" permissions that do not use specific hardware:

Version 1.0 can access:
Photos/Media/Files
read the contents of your USB storage
modify or delete the contents of your USB storage
Storage
read the contents of your USB storage
modify or delete the contents of your USB storage
Other
view network connections
full network access

In this case the Google Play search is based on the first word, in fact if you search " oficialía " you do not find any data, in fact it seems to me that it is not a recognized word for google play.

I recommend you add as keywords: "Oficialía", "Partes" and "Móvil".

for this add a description containing those words:

I suggest you read the documentation

  

Use the best practices for engine optimization   Search (SEO) in the description of the application, but keep in mind   Google Play content policies on infractions   related to the IP address and the use of spam (for example,   Fraudulent practices with keywords, phishing,   etc.).

    
answered by 08.06.2017 / 21:45
source