[OtherPushClient] handleUpdateToken other push token is : other push type: huawei
OtherPush
to find logs similar to the following ones and locate the return code for vendor channel registration:// Huawei channel// If filtering by the keyword `OtherPush` cannot find the return code, you can try the keyword `HMSSDK` and find the return code after `onResult` or `onConnect`[OtherPushHuaWeiImpl] other push huawei onConnect code:907135702n// Mi channel[OtherPush_XG_MI] register failed, errorCode: 22022, reason: Invalid package name: com.xxx.xxx// Meizu channel[OtherPush_XG_MZ] onRegisterStatus BasicPushStatus{code='110000', message='Invalid appId'}// OPPO channel[OtherPushOppoImpl] OppoPush Register failed, code=14, msg=INVALID_APP_KEY// vivo channel[OtherPushVivoImpl] vivoPush Register or UnRegister fail, code = 10003
Vendor Channel
|
Return Code
|
Description
|
Suggested Solution
|
Link
|
Huawei | 1001 | Make sure that the "HMS" or "HMS-Core" application is installed in the phone, which is required for Huawei Push | Go to Huawei AppGallery to download and install the "HMS-Core" application | |
| 6003 | The application APK is not signed or contains signing information that doesn't match that registered on the Huawei Developer platform; however, it must be correctly signed for Huawei Push | Sign the APK file or check whether the signing information is correct
Configuring the signature certificate fingerprint for the Huawei channel | |
|
907135000
| The appId is invalid | Check whether the value of the appId field in the Huawei Push configuration file agconnect-services.json matches the application package nameCheck whether the configuration file is in the root directory of the project's app module (at the same level as the build.gradle file of the application) | |
| 907135702 | The SHA256 value of the signature file is different from that configured on the Huawei Push platform | Check whether the entered SHA256 value of the signature file is the same as the one configured on the Huawei Push platform (multiple ones can be added) | |
| 907135003 | The apiclient object is invalid | Check whether the phone can access the internet normally or reconnect it to the network This problem is most probably caused by version incompatibility of the HMS-Core application on Huawei phones. You can try searching for HMS-Core or Huawei Mobile Service in Huawei AppGallery, check whether the latest version is installed, and if not, upgrade it | |
HONOR | 8001000 | The device does not support HONOR push | Use HONOR devices for testing Update the version of the Magic UI that includes the push service | |
| 8001003 | Failed to obtain the application certificate fingerprint | Configure your certificate fingerprint | |
Mi | 22006 | The application ID is invalid | Check whether the application package name, appId , and appKey match each other on the Mi Push platform | |
| 22007 | The application key is invalid | Check whether the application package name, appId , and appKey match each other on the Mi Push platform | |
| 22022 | The application package name is invalid | Check whether the application package name, appId , and appKey match each other on the Mi Push platform | |
Meizu | 110000 | The appId is invalid | Check whether the application package name, appId , and appKey match each other on the Meizu Push platform. Check the application information on the Flyme Push platform | |
| 110001 | The appKey is invalid | Check whether the application package name, appId , and appKey match each other on the Meizu Push platform | |
OPPO |
14
| The AppKey parameter is invalid | Please note that OPPO's AppKey instead of AppId should be entered for setOppoPushAppId , while OPPO's AppSecret instead of AppKey should be entered for setOppoPushAppKey | |
|
15
| The AppKey parameter is missing | Enter the AppKey parameter | |
vivo |
10003
| The application package name does not match the configured one | Check whether the application package name, appId , and appKey match each other on the vivo Push platform | |
|
10004
| The appKey is incorrect | Check whether the application package name, appId , and appKey match each other on the vivo Push platform | |
|
10005
| The appId is incorrect | Check whether the application package name, appId , and appKey match each other on the vivo Push platform | |
Push Kit
and App Messaging
are enabled on the Development -> Project Settings -> API Management page.connect versionCode
is lower than connect minVersion
, then it means that the system application "HMS" or "HMS_Core" is too old. Please retry registering after upgrading the application.I/HMSSDK_HuaweiApiClientImpl: ====== HMSSDK version: 20601301 ======I/HMSSDK_HuaweiApiClientImpl: Enter connect, Connection Status: 1E/HMSSDK_Util: In getHmsVersion, Failed to read meta data for the HMS VERSION.I/HMSSDK_HuaweiApiClientImpl: connect minVersion:20600000I/HMSSDK_HuaweiMobileServicesUtil: connect versionCode:20301306D/HMSAgent: connect end:-1001
Was this page helpful?