http://seller.samsungapps.com/ - Choosing a Category?

匿名 (未验证) 提交于 2019-12-03 01:33:01

问题:

How can I choose a category when submitting a new app in http://seller.samsungapps.com/

Under the Category menu all I see is "Main Category" or "Galaxy Specials"

When I choose Main Category, then I get no submenu, and it won't let me submit the game

If I choose Galaxy Specials \ Other, it tells me:

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. 

So, how can I submit the game?

回答1:

this answer worked for me.

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

Its just small change in manifest file.

Content of the link:

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. 


回答2:

If you have implemented one of the Samsung SDK, this line is missing in your AndroidManifest.xml

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


回答3:

Just put this line in your manifest.xml and everything will be OK. I just published this way.

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


回答4:

100% works to me. i had the same problem to upload my app on Samsung apps sellers, but after adding the following permission now it worked.

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


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!