http://seller.samsungapps.com/ - 选择一个类别?

时间:2014-07-31 21:04:00

标签: samsung-mobile

如何在http://seller.samsungapps.com/

中提交新应用时选择类别

在“类别”菜单下,我看到的只是“主要类别”或“银河特价”

当我选择主类别时,我没有子菜单,也不会让我提交游戏

如果我选择Galaxy Specials \ Other,它会告诉我:

The registered binaries do not meet the category conditions for GALAXY Specials. The GALAXY Specials category can be selected only if at least one binary supports GALAXY Specials. You can go to ‘Binary>Advanced Mode>Binary Details’ to check the supported GALAXY Specials options.

那么,我该如何提交游戏?

4 个答案:

答案 0 :(得分:14)

这个答案对我有用。

http://www.feelzdroid.com/2015/05/galaxy-specials-error-samsung-seller-office.html

它只是清单文件中的小变化。

链接内容:

Recently Samsung seller office has done some changes, 
if you simply upload APK like Google play store it will throw error,
“The registered binaries do not meet the category conditions for GALAXY Specials. 
The GALAXY Specials category can be selected 
    only if at least one binary supports GALAXY Specials. 
You can go to ‘Binary > Advanced Mode > Binary Details’ 
    to check the supported GALAXY Specials options.”

There is no option to disable Galaxy specials in seller office, 
    the simple and easy way to fix this problem is 
    just add a permission in your manifest file 
i.e,
   <uses-permission android:name=”com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY”/>

Now export your APK in release mode and upload it in Samsung seller office, 
a confirmation message appears, just confirm it.
Now APK will be successfully uploaded to Samsung app store.

答案 1 :(得分:10)

如果您已实施其中一个Samsung SDK,则AndroidManifest.xml中缺少此行

<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"/>

答案 2 :(得分:6)

只需将此行放在manifest.xml中,一切都会好的。我刚刚发布这种方式。

<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"/>

答案 3 :(得分:2)

100%对我有用。 我在三星应用程序卖家上传我的应用程序时遇到了同样的问题,但在添加以下权限后,它现在有效。

<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"/>