我在Play商店发布了一个名为“FIND PLACES NEARBY ME”的应用程序,但是当我用他的名字搜索它时我找不到它,我发现它只在游戏商店中名字为findplacesnearbyme(包名)。 / p>
在清单文件中,我确定我将名称放在附近的应用程序名称上。
感谢您的帮助
这是我的清单
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name="com.developer.android.library.searchPlaceAroundMe.receiver.ConnectivityReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<receiver android:name="com.developer.android.library.searchPlaceAroundMe.receiver.PhoneStateReceiver" >
<intent-filter android:priority="999" >
<action android:name="android.intent.action.SERVICE_STATE" />
</intent-filter>
</receiver>
<receiver
android:name="com.developer.android.library.searchPlaceAroundMe.receiver.SmsSentReceiver"
android:exported="false" >
<intent-filter>
<action android:name="com.developer.android.library.searchPlaceAroundMe.receiver.SmsSentReceiver" />
</intent-filter>
</receiver>
<receiver
android:name="com.developer.android.library.searchPlaceAroundMe.receiver.SmsDeliveryReportReceiver"
android:exported="false" >
<intent-filter>
<action android:name="com.developer.android.library.searchPlaceAroundMe.receiver.SmsDeliveryReportReceiver" />
</intent-filter>
</receiver>
<receiver android:name="com.developer.android.library.searchPlaceAroundMe.receiver.BootReceiver" >
<intent-filter>
<action android:name="android.intent.action._BOOT_COMPLETED" />
</intent-filter>
</receiver>
<activity
android:name="com.developer.android.searchPlaceNearByMe.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme"
android:windowSoftInputMode="adjustPan" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.developer.android.searchPlaceNearByMe.LoginActivity"
android:screenOrientation="portrait"
android:theme="@style/AppBaseTheme"
android:windowSoftInputMode="adjustPan" />
<activity
android:name="com.developer.android.searchPlaceNearByMe.Unrar"
android:label="@string/title_activity_unrar" >
</activity>
</application>
使用字符串app_name等于“查找附近的位置”
答案 0 :(得分:0)
Google Play在搜索应用程序时有很多方法,包括标题,说明,包名等。
当您搜索“查找我附近的地方”时,它会搜索在任何区域中包含这些单词的所有应用程序,此应用程序名称使用每天使用的单词,因此会涉及很多应用程序。
当您搜索findplacesnearbyme时,谷歌可能只找到您的应用程序,因为没有其他应用程序在任何地方都有这个“单词”,而您的应用程序将其作为包名称。
答案 1 :(得分:0)
除了TomTsagk的答案之外,您还可以随时在Google Play中使用尽可能多的关键字提供应用说明。
在某些情况下,根据Google Play中的“app_name”无法找到您的应用。至少在你有一些下载之前。
在发布商店中发布应用的最佳方式是将您的包名称添加为google play链接的参数。
即。 https://play.google.com/store/apps/details?id=“您的应用包”。
如果我在你的位置,我会用不常见的描述更改名称。