Reputation: 214
After my app is submitted for review, it is rejected by Huawei due to the checkAppUpdate API not having been called. But I have checked my code, the checkAppUpdate API has been called indeed. Who can tell me how can I figure out this problem?
Upvotes: 0
Views: 77
Reputation: 34007
Check whether the checkAppUpdate
API has been called, by referring to the following documents:
Check whether the obfuscation file configuration meets the document requirements.
You are advised not to perform operations such as secondary encapsulation, hardening, and log output restriction on the APK submitted for review.
Set debuggable
in the AndroidManifest.xml
file to true
during APK packaging.
Record the keyword UpdateSDK version is: xxx in logs if log filter is required. When an app is under review, this keyword is checked to determine whether the checkAppUpdate
API is called.
For Details,check:https://developer.huawei.com/consumer/en/doc/development/AppGallery-connect-Guides/appgallerykit-test?ha_source=hms1
Upvotes: 1