ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

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

2019-06-23 11:11:17  阅读:305  来源: 互联网

标签:android samsung-mobile samsung-galaxy samsung-mobile-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

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有