SQLite bugs in Capacitor Mobile Project

Wappler 7.3.6, macOS, Capacitor Android Project

Root cause: After adding SQLite I’m facing these errors.

  1. After adding insert to sqlite flow, app screen goes completely blank, however in emulator, everything is visible.
  2. In console jeep-sqlite is not detected.
  3. swiper-bundle.min.js.map was missing. So I added that from this link

https://cdn.jsdelivr.net/npm/swiper@11.2.6/swiper-bundle.min.js.map

This is the swiper version found in the project.

/**

* Swiper 11.2.6

* Most modern mobile touch slider and framework with hardware accelerated transitions

* https://swiperjs.com

*

* Copyright 2014-2025 Vladimir Kharlampidi

*

* Released under the MIT License

*

* Released on: March 19, 2025

*/

This is the culprit :grinning_face_with_smiling_eyes: for making my app blank :backhand_index_pointing_down: Please have a look and provide, solution.

<script src="dmxAppConnect/dmxCapacitorSQLite/dmxCapacitorSQLite.js" defer></script>

Move dmxCapacitorSQLite.js down and place it after jeep-sqlite.esm.js, I think the loading order of those scripts matter.

Thanks @patrick it worked :saluting_face: