Questions tagged [ionic6]

278 questions
0
votes
0 answers

Trouble capturing 'Enter key' press event on Android 13 in Ionic/Angular app. How to prevent focus change and call API?

I have problem in ionic/angular mobile app. I can catch press event "Enter key" until android 12 but I can catch press event "Enter key" in android 13. When one number input in screen, I can catch event press event "enter key" but when several…
0
votes
0 answers

Ionic Vue 6 CapacitorHttp not working in android apk

I have a problem driving me insane. My app is an Ionic Vue 6 app with Capacitor. Running the app with the usual commands works on both physical devices and emulators: ionic capacitor run android -l --external and ionic capacitor run ios -l -async…
jaletechs
  • 501
  • 1
  • 7
  • 19
0
votes
0 answers

Ionic 6 Android 11 Video Player mp4 getting: Access to this video was denied

I'm trying to use a video player, in Ionic 6, I tried many options, fluidplayer, flowplayer, video html5 tag, but I'm getting access denied. AndroidManifest.xml ... …
danilo
  • 7,680
  • 7
  • 43
  • 46
0
votes
0 answers

Using PolyLine with @capacitor/google-maps plugins gives error Property 'addPolylines' does not exist on type 'GoogleMap'

I'm working with an ionic 6 app with Capacitor Google map plugin (@capacitor/google-maps). Adding a marker works. but when I try to add Polylines, it give me an error. Property 'addPolylines' does not exist on type 'GoogleMap'. and Cannot find name…
JYMM
  • 1
  • 1
0
votes
0 answers

How to open login URL with SafariViewController with angular-oauth2-oidc

I'm new to angular-oauth2-oidc. I want to show login page from keycloak service for my Ionic 6 mobile project in embedded browser with Capacitor browser plugin. I've used loadDiscoveryDocumentAndLogin from angular-oauth2-oidc to display my login…
0
votes
0 answers

Determine if user tapped a date in ion-datetime vs change month

In an Ionic 6 ion-datetime I want to react when a user picks a date, not when they change month using the wheel view. It's ok that they use the wheel view to jump forward many months, or years, but I don't want run my code unless they tap on a…
Craig
  • 8,093
  • 8
  • 42
  • 74
0
votes
1 answer

Error 'invalid_client' when using JavaScript and Spotify API with Ionic 6 and Angular

I'm encountering an issue while using JavaScript and the Spotify API in my Ionic 6 with Angular project. Here's the code snippet I'm using: async function getToken() { const clientid = 'xxxxx'; const clientsecret = 'xxxxx'; const buf =…
0
votes
3 answers

How can i call an using an ?

im trying to perform the next action: I just wanna select month and year with the next example: But i dont want this label visible all the time, i think its way more convenient to call it…
Jesus Poza
  • 11
  • 2
0
votes
1 answer

Ion-Header Overlaps Status Bar and Ion-tab-bar cropped in iOS

I have an Ionic 6 app with Vue3. I am using the tabs component in my app. My App.vue is as follows I have a tabs page MemberPage.vue as follows with a…
thezohaan
  • 324
  • 1
  • 10
0
votes
0 answers

Ionic | Android: Files in /res/raw not found. Removed in release bundle

The bundle in release does not generate the res/raw folder. Therefore, libraries like PushNotification that read the sound from that folder do not work correctly. I need the audio.mp3 file to exist in the release bundle inside the res/raw folder The…
0
votes
1 answer

Why the background is black in an Android app after adding Google Capacitor Map?

I have an application made with Ionic 6, Angular 14 & Capacitor4. Only for certain devices, the background is shown black. Running the app with Android Studio I can see the background correctly but if I inspect the device with Chrome Developer…
Guillermo
  • 19
  • 5
0
votes
0 answers

push notification not working on android 12 and 13

i am using push notification in my ionic cordova project and it's working on every android versions except android 12 and 13. How can i fix it? this is how my androidmanifest.xml looks
0
votes
0 answers

how to make a dropdown submenu in ionic 6 with angular

How can I turn Ionic's basic side menu into a side menu with dropdown submenus? //html
0
votes
0 answers

Is it possible to make an ionic android application that can run functions even when app is closed?

I built an ionic android app that utilizes the cordova background mode and pedometer plugins to have the app running in the background. I have heard recently of pedometer apps that continue to count steps even when the app is closed. This…
0
votes
2 answers

How do I make ion-menu-button larger in md(Android) mode?

I changed the font-size of my ion-menu-button (hamburger button) using the following CSS code. ion-menu-button { font-size: 31px !important; } The above code seems to work on my app in ios mode. (See attached screenshot) But that was not the…