找不到市场应用 [英] can't find app on market

查看:114
本文介绍了找不到市场应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我手动安装了我的应用程序的APK华硕变换,它工作正常,我部署它在市场上,但我不能找到它(我能找到它与我的三星Galaxy ACE),我应该上设置的东西我表现? 谢谢

I installed manually the apk of my app on Asus Transform and it works fine, I deployed it on the market but i can't find it (I can find it with my Samsung Galaxy Ace), should I set something on my manifest? Thanks

编辑 的manifest.xml                          

EDIT manifest.xml

            <activity
                android:name="Splash"
                android:label="@string/app_name"
                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=".PoiDetail"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>    

            <activity
                android:name=".FinishWigo"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>    


            <activity
                android:name=".SyncMap"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>                            

            <activity 
                android:name=".mioTTS"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>

            <activity 
                android:name=".InvioMessaggio"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>

            <activity 
                android:name=".AzioniPoi"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>

            <activity 
                android:name=".listaRicerca"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>

            <activity 
                android:name=".AdvancedPreferences"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                android:theme="@drawable/resstyle"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>

            <activity 
                android:name=".Sync"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>

            <activity 
                android:name="PoiShow"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity> 


            <activity
                android:name="com.mitcom.wigoCremona.wigo"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.EMBED" />
                </intent-filter>
            </activity>
    </application>

    <uses-sdk
            android:minSdkVersion="8" />

    <uses-permission
            android:name="android.permission.INTERNET" />
    <uses-permission
            android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission
            android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission
            android:name="android.permission.ACCESS_LOCATION" />
    <uses-permission
            android:name="android.permission.ACCESS_GPS" />
    <uses-permission
            android:name="android.permission.WRITE_EXTERNAL_STORAGE" />    
    <uses-permission 
            android:name="android.permission.CALL_PHONE"/>            

推荐答案

这可能是因为您允许的权限CALL_PHONE。如果我没有记错的变换不能打个电话。其结果是该应用很可能被滤出基于该市场的

It could be that you are allowing the permission CALL_PHONE. If I'm not mistaken the Transform can't make a phone call. As a result the app is likely be filtered out of the market based on that.

下面是从页面报价的developers.android.com

Here's a quote from the page on developers.android.com

每个您的应用程序上传到Android Market发布者网站的时候,   Android Market的扫描应用程序的   清单文件。它会查找   &LT;使用特征&GT; 元素的计算结果   他们与其他组合   元件,在某些情况下,如   &LT;使用-SDK&GT; &LT;使用-许可&GT;   元素。建立后,   所需的应用程序的设置   特征,它存储该列表   内部元数据关联   该应用程序apk文件和   应用程序版本。

Each time you upload an application to the Android Market Publisher Site, Android Market scans the application's manifest file. It looks for <uses-feature> elements and evaluates them in combination with other elements, in some cases, such as <uses-sdk> and <uses-permission> elements. After establishing the application's set of required features, it stores that list internally as metadata associated with the application .apk and the application version.

当用户搜索或浏览查找   使用Android Market的应用   应用,服务比较   每个应用程序需要的功能   与上可用的特征   用户的设备。如果所有的   应用程序所需的功能   在设备上present,Android电子市场   允许用户看到该应用程序   并有可能下载它。如果有任何   所需的功能不支持   设备,Android Market的过滤   应用程序,以便它是不可见   给用户,并不能用于   下载。

When a user searches or browses for applications using the Android Market application, the service compares the features needed by each application with the features available on the user's device. If all of an application's required features are present on the device, Android Market allows the user to see the application and potentially download it. If any required feature is not supported by the device, Android Market filters the application so that it is not visible to the user and not available for download.

下面是一个链接到页面: http://developer.android.com/guide/topics/manifest /uses-feature-element.html

Here's a link to the page: http://developer.android.com/guide/topics/manifest/uses-feature-element.html

希望这有助于你。

编辑 - 对不起,该复制Nanne的回答是打字,因为他们张贴。

Edit - Sorry this duplicates Nanne's answer was typing as they were posting.

这篇关于找不到市场应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆