[Solved]Hot Update fail when update sdkbox in cocos creator 1.93

@slackmoehrle
this is logcat:
javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0xb8102100: Failure in SSL library, usually a protocol error.
error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure (external/openssl/ssl/s23_clnt.c:741 0x83c27770:0x00000000)

and my code: project.manifest" in server version 4

    let customManifest = JSON.stringify({
   "packageUrl":"https://xxx/yyy/",
    "remoteManifestUrl":"https://xxx/yyy/project.manifest",
    "remoteVersionUrl":"",
     "version":"1",
     "assets":{     
     },
     "searchPaths":[]
   });

    this._storagePath = ((jsb.fileUtils ? jsb.fileUtils.getWritablePath() : '/') + 'data-remote-asset');
    this._am = new jsb.AssetsManager('', this._storagePath);

   if (this._am.getState() === jsb.AssetsManager.State.UNINITED) {
        var manifest = new jsb.Manifest(customManifest, this._storagePath);
        this._am.loadLocalManifest(manifest, this._storagePath);
    }

    if (cc.sys.os === cc.sys.OS_ANDROID) {
        this._am.setMaxConcurrentTask(5);
    }

thanks all seen!

@mailaminh12 let me ask the engineering team to take a look.

1 Like

thanks u very much