pwa-builder / PWABuilder-CLI

Node.js tool for App Generation
Other
1.63k stars 142 forks source link

Signed APK does not work #307

Closed KashyapIGA closed 6 years ago

KashyapIGA commented 6 years ago

Hi,

I have generated a singed APK using my website link. All works fine until I sign the APK. Even after signing, index.html page of my website is loaded, but it does not go further from there.

My website is PWA and I am building APK using the pwabuilder commands.

Any help is appreciated, Thanks in advance.

KashyapIGA commented 6 years ago

Found the solution,

There was SSL configuration error for the API server which was working perfectly in https, but gave the error for configuration.

Need to fix the error at the API server, but for the time being have solved it by changing code in SystemWebViewClient.java where if onReceivedSslError is invoked, even for debug=false setting

handler.proceed(); works.

Thanks again.