48,430 questions
Advice
0
votes
1
replies
36
views
I have Cors issues developping an app with ionic that interact with Odoo SaaS, is there an easy way to fix the issue?
So I work for a company that help other companies to use Odoo (usually SaaS version). One of them want us to dev a simplified app for their employees that will interact with Odoo (they consider the ...
0
votes
0
answers
21
views
Capacitor File System : Use uri in audio source
I use the capacitor file system to allow user to upload an audio file as follow :
async saveLocalMusic(file: File, musicId: string): Promise<string> {
const extension = file.name.split('.')...
Advice
1
vote
1
replies
73
views
Using a custom WebView instead of the main Capacitor WebView while still accessing all Capacitor plugins
I’m trying to understand if a different WebView architecture is possible in a Capacitor app.
From what I understand, Capacitor initializes a main WebView that is connected to the Capacitor bridge, ...
-1
votes
1
answer
34
views
i need to show phonenumber hint on keyboard in ionic can any suggest for it. just like Instamart when i tried using which i shared in Body
autocomplete="tel"
name="phone"
type="tel"
these things are adding in ion-input as suggest by GPT still i'm not getting
2
votes
1
answer
113
views
URL changing but not the display
I am trying to use the ionic router outlet, in an Angular Standalone app.
I have set the ion-router-outlet in the app.component.ts and calling router.navigate. The URL is changing, the fallback page ...
0
votes
0
answers
31
views
Changing the default Capacitor Push Notification icon in Ionic XCode Mac ios
The AppIcon inside Apple Xcode project (created with Ionic) was changed several times with success (App icon on ios changes without any problems), but the Push Notification icon remains always as the ...
-1
votes
1
answer
61
views
Prevent swipe back on IOS
I am building a Capacitor app using Vue and Ionic.
On iOS, I want to disable the default edge swipe back gesture on some screens.
I have seen a similar question where the solution was to override the ...
1
vote
1
answer
189
views
How to install the latest Tailwind (v4) in an Ionic/Angular project
We'd like to install the latest Tailwind (v4) into our Ionic/Angular project so we can use its utility-first approach.
I've tried the guides mentioned here:
Angular guide
Capawesome guide
Workaround ...
0
votes
1
answer
69
views
Ionic Capacitor iOS cannot detect returning online after offline using @capacitor/network
I have an Ionic + Capacitor + Angular project using @capacitor/network. On iOS:
When the app goes offline (Airplane mode or no Wi-Fi), it sometimes (every time in my case) fails to detect coming back ...
0
votes
0
answers
133
views
Ionic + Cordova Android build fails: "A problem occurred evaluating project ':app' — DependencyHandler.module(Object)"
I’m working on an Ionic + Cordova project. After adding the Android platform and trying to sync/ build with Gradle, I keep getting this error:
A problem occurred evaluating project ':app'.
> 'org....
0
votes
1
answer
76
views
How to configure Capacitor (not Ionic) for Angular to VS Code Azure Function App integration
I have some straightforward questions asking for steps to configure Mac iOS.
I need local iPhone / Xcode simulator running Angular in Capacitor (no Ionic) to be able to make http calls to Azure ...
1
vote
1
answer
67
views
Build Ionic app with fastlane: export archive failed
I try to build my Ionic 8 app (Cordova) with fastlane. I created a Fastfile which calls match first and then uses the ionic plugin to build the app.
Fastfile:
platform :ios do
desc "Build ...
-1
votes
1
answer
39
views
Ionic Angular ion-content inner-scroll has zero height on iOS preventing scrolling - all standard fixes attempted
I have an Ionic Angular application where scrolling is completely broken on iOS (Safari, Firefox, Edge - all WebKit-based). Desktop browsers work perfectly. The diagnostic evidence shows that the ....
-1
votes
1
answer
190
views
Dark gap above Android keyboard when using Keyboard.resize = "body" in Capacitor
I’m building a React PWA packaged with Capacitor for Android.
I need the app to resize when the keyboard appears because a formatting toolbar must stay above the keyboard (similar to any notes apps).
...
-1
votes
1
answer
75
views
Capacitor app crashes while writing large JSON file using Filesystem.writeFile()
I'm building an Ionic + Capacitor app that uses the @capacitor-community/sqlite
plugin for local database storage.
I'm trying to export the entire SQLite database as a JSON backup file and save it ...