我在stackoverflow上阅读了很多帖子,我还经历了许多教程,如Vogella和theNewBoston,看看我在发布我的应用程序时出错了。 我导出了我的包的签名应用程序,创建了新的apk和密钥库。我相信现在不需要设置debuggable = false。 Eclipse会自动执行此操作。 我可以看到我的开发者控制台显示我的应用程序已发布但是当我尝试在我的手机或电脑上搜索谷歌播放时,我找不到我的应用程序。如果我只使用包名来搜索我的应用程序,我可以找到它。我的应用程序仅适用于小型和普通屏幕手机,而不适用于平板电脑。我尝试使用无数的手机搜索应用程序,没有运气。 附在这里是我的清单。请告诉我如何解决这个问题。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.MyPackage"
android:versionCode="2"
android:versionName="1.1" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="18" />
<!-- These 4 lines have been added by user i.e me -->
<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="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
The following two permissions are not required to use
Google Maps Android API v2, but are recommended. added by me
-->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<permission android:name="com.MyPackage.permission.MAPS_RECEIVE"
android:protectionLevel="signature"></permission>
<supports-screens
android:anyDensity="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.MyPackage.SplashScreen"
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>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="API Key" />
</application>
</manifest>
答案 0 :(得分:13)
我的应用程序花了差不多几天才出现。只是一个小小的注释,如果你在游戏商店找不到你的应用程序,尝试将名称放在双引号中,如“Park The Car”或“Relationship Guru”,然后搜索它。即使Play商店开始展示我的应用,如果我只是使用没有双引号的应用名称进行搜索,我找不到它。我看到了近500个应用程序,但仍然无法找到我的应用程序。但是在使用双引号时,我得到了完美的字符串匹配。
希望这会有所帮助。非常感谢帮助我解决这个问题。
答案 1 :(得分:2)
您尝试搜索的应用可能与您的设备不兼容。这就是为什么它没有出现在你的设备中。但是,当您在桌面站点上查找时,它是可见的。这是因为,您只是在查看应用程序。如果您要登录Google帐户,那么您会发现当点击安装按钮(在桌面网站上)时,它会向您显示与该帐户相关联的设备,询问其兼容性。 有时,某些应用程序也是特定于区域的,并且不可见(由于相同的原因)
答案 2 :(得分:0)
将您的应用名称放在说明中。不只是标题点。
答案 3 :(得分:0)
确保清单文件中的android:label"
是正确的。 @string/app_name
应设置为正确的名称。
答案 4 :(得分:-2)
使用您的包裹名称搜索我。
你会找到它。
如果您的包裹名称是com.MyPackage。
在Google Play搜索框中以com.MyPackage搜索。
很好用。