2

三星Galaxy Apps商店不接受我的應用程序提交。Android應用程序無法在三星Galaxy應用程序提交(如何包括三星SDK?)

有一個類別部分,其中有兩個字段用於選擇類別,我將兩者都設置爲主類別,但是當我提交它時表明我仍然需要爲我的應用程序選擇一個類別。如果我選擇的類別字段中的一個唯一的選擇(該選項是GALAXY特價),我提供的子類(其中我必須選擇,否則我還是坐上提交任何類別中選擇錯誤)。

不管是什麼子類,我選擇,我總是得到以下錯誤:

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. 

我已經做了一些挖周圍,聽到的只有這樣,才能通過這個問題是包括三星SDK中我的二進制文件。

我的問題是:

回答

1

剛纔我碰到這個問題,並設法解決它。從下面的線,我們可以讀到三星已經告訴用戶(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/網站。

你會看到三星開發者SDK被認可,即使你沒有在你的應用程序中使用它除了把線清單。

enter image description here

您現在可以成功提交您的應用程序。

相關問題