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

≡放荡痞女 提交于 2019-12-04 00:08:47
Naruto

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