Encountering an issue only when using --prod on Android phones. Strangely, touching anywhere triggers the event that should be fired at that specific location, causing the content to suddenly appear.
I came across information suggesting a conflict between TypeScript versions and @ionic/app-scripts, recommending a downgrade to TypeScript 2.0.x. However, attempting this resulted in an error during the build process:
Cannot read property 'Private' of undefined: tsickle.js:118:40
It seems like the version mismatch is causing conflicts with other dependencies in my package.json file:
{
"name": "green-dragon",
"version": "0.0.1",
...
}
The issue may possibly be related to the --minifyjs flag, although the exact reason remains unclear.