Strange Google requests crashes
See original GitHub issueHi! I’ve already googled the issue but found nothing Maybe You know how to fix the error Some of users with different phones/android versions got error in the android builds
I used Your default configs for config.xml and meta tag in the index.html Whitelist plugin works properly (seems like) All my files are static and the app doesn’t make any external requests at all The most users are don’t facing this issue. Cordova and plugins/platforms are up to date. Web builds works properly for any device. I really can’t understand where this request comes from and can’t wrap it in try/catch or handle somehow.
My configs:
<widget id="com.quiphop.bumgineer" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Bumgineer</name>
<description>
</description>
<author email="quiphop@gmail.com" href="">
Konstantin Vasilkovsky
</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<preference name="Fullscreen" value="true" />
<preference name="orientation" value="portrait" />
<plugin name="cordova-plugin-browsersync" spec="~0.1.7" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.2" />
<engine name="ios" spec="^4.5.1" />
<engine name="browser" spec="^5.0.2" />
<engine name="android" spec="^7.0.0" />
</widget>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
Thanks for Your attention!
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (4 by maintainers)
After deeper investigation I’ve found the major error There is something with sound on Meizu Phones only on cordova android build, same build in browser working well. Original error:
Failed to execute 'start' on 'AudioBufferSourceNode' The provided double value is non-finite
What was the solution and explanation?