Capacitor HTTP not passing data on mobile device and simulator
Thank you! Including ‘Content-Type’: ‘application/json’
View ArticleWeb Server Cache Issue with Ionic App
I just looked at an Angular project that I’ve worked on (v17) and a production build has hashes in the file names. The index.html references the JS files with hashes. So, every time a build is...
View ArticleHandling Privacy Manifest Requirements with Outdated Firebase and Angular...
For Capacitor you’ll have to update to 5.7.4 or newer If your problem is with the native Firebase SDK, why the AngularFire version matters? isn’t that just the javascript framework?
View ArticleLinking 3rd party swift packages
New plugins now include a Package.swift file where you can add swift packages as dependencies, but it will only work if users are using the Capacitor’s SPM template. capacitorjs.com Swift Package...
View ArticleHandling Privacy Manifest Requirements with Outdated Firebase and Angular...
Thanks for the response. Yep looking to update to Capacitor 5.7.4 initially as that is an easy update. You raise an interesting point with Firebase native vs JS, I’m not really sure how to connect...
View ArticleWeb Server Cache Issue with Ionic App
Try adding cache-busting techniques like appending a version query (?v=1.2.3) to file URLs or setting cache-control headers in your server (Cache-Control: no-cache, no-store, must-revalidate). This...
View ArticleSticky content without using ion-list
In my Ionic app, I have an element I want to make sticky. Once the user scrolls the element into view, I want it to stay at the top of the screen no matter how far down the user scrolls. I can’t get...
View ArticleScanning QR code from an image folder
Check this website https://2scan.net/ I think will help you
View ArticleHandling Privacy Manifest Requirements with Outdated Firebase and Angular...
Update: I have manually created a privacy manifest file (PrivacyInfo.xcprivacy) but I am getting exactly the same issues for the same packages from App Store Connect. Is it not recognizing the privacy...
View ArticleHandling Privacy Manifest Requirements with Outdated Firebase and Angular...
So GPT seems to think that each SDK needs its own file which means manually creating a manifest is a waste of time. Anyone have any experience with this? It looks like as of 12 Feb 2025 all SDKs...
View ArticleSticky content without using ion-list
Ok, I found a way to make it work without ion-list. It was as simple as <div class='sticky'> and this CSS: .sticky { position: sticky; top: 0; z-index: 100; // We must set the background so that...
View ArticleHow to force light theme
Not sure how this makes sense. In a default project, variables.scss is empty.
View ArticleIonic 8 - how to force light mode / disable dark mode?
I’m trying to figure out how to always have light mode, regardless of the system setting. Currently, the ionic app switches between light and dark in accordance with the ios or android setting. In the...
View ArticleIonic camera with overlays - camera view is black
Try adding this to global.scss: scss CopyEdit body.camera-active { --background: transparent; --ion-background-color: transparent; } Then, add the class when the camera is active: typescript CopyEdit...
View ArticleIonic Portals pricing
Does anyone know what pricing or costs we might have if using Ionic Portals? The pricing does not seem to be very clear and we would like to know what we might be looking at if we decided to use...
View ArticleWeb Server Cache Issue with Ionic App
Corrected Version Thanks, Regarding Index.html, every time I run an Ionic build or use ionic build --prod, it always generates the same HTML file. How do I ensure there are new hash in the file?...
View ArticleIonic Portals pricing
You can’t buy it anymore, see Important Announcement: The Future of Ionic’s Commercial Products - Ionic Blog
View ArticleCapactor 7 on Android - Toolbar and Tab Bar - display issue
“fixed” it by setting padding-top: 20px on <ion-header> … if you’re using both mobile and web you can use Capacitor to check for the current platform and add or don’t a css class to the...
View ArticleWeb Server Cache Issue with Ionic App
In regards to your index.html file, you aren’t seeing any hashes for JS file includes in the production build? If you see hashes, they aren’t necessarily going to change if you just rebuild without...
View Article