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?
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.
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"/>
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"/>
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"/>
来源:https://stackoverflow.com/questions/25068907/http-seller-samsungapps-com-choosing-a-category