Http://seller.samsungapps.com/- Choosing a category?

How to choose a category when sending a new application at http://seller.samsungapps.com/

In the Category menu, all I see is the Main Category or Galaxy Special Offers

When I select Main Category, I do not receive a submenu, and it will not allow me to send the game

If I choose Galaxy Specials \ Other, he will tell 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 send the game?

+6
source share
4 answers

this answer worked for me.

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

Easily modify the manifest file.

Link Content:

 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 ie, <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. 
+9
source

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

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

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

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

100% works with me. I had the same problem as for downloading my application to Samsung app sellers, but after adding the next permission now it worked.

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

Source: https://habr.com/ru/post/973194/


All Articles