其他分享
首页 > 其他分享> > Android应用无法在Samsung Galaxy Apps上提交(如何包含Samsung SDK?)

Android应用无法在Samsung Galaxy Apps上提交(如何包含Samsung SDK?)

作者:互联网

三星Galaxy Apps商店不接受我的应用程序提交.

有一个类别部分,其中有两个字段用于选择类别,我已将两者都设置为主类别,但是当我提交它时指出我仍然需要为我的应用程序选择一个类别.如果我为其中一个类别字段选择了唯一的其他选项(该选项是GALAXY Specials),我会提供子类别(我必须选择其他类别,否则我仍然会在提交时获得无类别选择错误).

无论我选择哪个子类别,我总是会收到以下错误:

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.

我已经做了一些挖掘,并听说通过这个问题的唯一方法是在我的Binary中包含Samsung SDK.

我的问题是:

>如何在我的二进制文件中包含Samsung SDK? (我已经使用用户定义的附加站点“http://developer.samsung.com/sdk-manager/repository/Samsung-SDK.xml”通过SDK Manager下载了它)
>否则,是否有其他方式让我的应用程序提交?

解决方法:

我刚刚遇到过这个问题,并设法解决了这个问题.从下面的帖子中,我们可以看到三星告诉其中一个用户的内容(https://www.scirra.com/forum/samsung-appstore-publishing_t116364):

Also, please note that -If the following user-permission exists in the
manifest file, it is considered that the application uses Samsung
Developer SDK.
* < uses-permission android:name=”com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY”
/ >
-If the user-permission does not exist in the manifest file, it is considered that the application does not use the Samsung Developer
SDK.

因此,只需将此添加到Android的Manifest.xml中,即可重建apk.

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

重建后,将新apk上传到http://seller.samsungapps.com/站点.

即使你没有在你的应用程序中使用它,除了将行放在清单中之外,您将看到Samsung Developer SDK被识别.

enter image description here

您现在可以成功提交您的应用.

标签:android,samsung-mobile,samsung-galaxy,samsung-mobile-sdk
来源: https://codeday.me/bug/20190623/1270174.html