简体   繁体   English

Android应用程序-提交玩商店

[英]Android App - Submission to play store

I made android app and tested it, posted to play store successfully. 我制作了android应用并对其进行了测试,并成功发布到商店中。
But the problem is that its available only on play store with sprint service provider only. 但是问题在于它仅在带有sprint服务提供商的游戏商店中可用。 Its not visible on TMobile android phone's playstore. 在TMobile android手机的playstore上不可见。
Am I missing something in play store or application settings? 我是否在Play商店或应用程序设置中缺少某些内容? Here's the manifest file. 这是清单文件。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.conscience.app"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-feature android:name="android.hardware.camera" />
    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <application
        android:name="com.conscience.lite.ConscienceApp"
        android:allowBackup="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.conscience.lite.home.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.conscience.app.settings.SettingsActivity"
            android:label="@string/title_activity_settings" >
        </activity>
        <activity
            android:name="com.conscience.app.album.AlbumActivity"
            android:label="@string/title_activity_album" >
        </activity>
        <activity
            android:name="com.conscience.app.VideoSaveActivity"
            android:label="@string/title_activity_video_save" >
        </activity>
        <activity
            android:name="com.conscience.app.EditVideoActivity"
            android:label="@string/title_activity_video_edit" >
        </activity>
        <activity
            android:name="com.conscience.app.settings.FaqActivity"
            android:label="@string/title_activity_faq" >
        </activity>
        <activity
            android:name="com.conscience.app.settings.AboutActivity"
            android:label="@string/title_activity_about" >
        </activity>
        <activity
            android:name="com.conscience.app.settings.BGSettingsActivity"
            android:label="@string/title_activity_bgsettings" >
        </activity>
        <activity
            android:name="com.conscience.app.settings.VideoServicesActivity"
            android:label="@string/title_activity_video_services" >
        </activity>
        <activity
            android:name="com.conscience.app.cal.CalenderActivity"
            android:label="@string/title_activity_calender" >
        </activity>
        <activity
            android:name="com.conscience.app.AddNewVideoActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/title_activity_video" >
        </activity>
        <activity
            android:name="VideoPlayer"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:screenOrientation="landscape"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>
    </application>
</manifest>

Google do provide a custom Play Store front end to network providers, for example here in the UK the o2 network take use of it to show o2's list of suggested apps and their own branded apps. Google确实向网络提供商提供了一个自定义的Play商店前端,例如在英国,O2网络会利用它来显示O2的建议应用程序列表和他们自己的品牌应用程序列表。

It is possible that the tmobile store was still being updated. tmobile商店可能仍在更新中。 Google push apps out to servers in a round robin style, rather than all at once. Google将应用程序以循环方式推送到服务器,而不是一次全部推送到服务器。 I have checked and your app is appearing in the store (both generic and o2 specific) here in the UK. 我已经检查过,并且您的应用程序正在英国的商店(通用和特定于O2)中显示。

Just update manifest with this then publish your apps... it will work.... 只需使用此更新清单,然后发布您的应用程序即可。

<supports-screens android:smallScreens="false"
                  android:normalScreens="true"
                  android:largeScreens="true"
                  android:xlargeScreens="true"
                  />

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM