Error: spawn /Users/{name}/Library/Android/sdk/platform-tools/adb ENOENT
It’s a brand new install. (Actually, new iMac so everything has been installed fresh… ionic cli, npm, JDK8, Gradle, Android SDK, set up environmental variables, etc.) I’ve also noticed there is no...
View ArticlePost state to server on close Ionic cordova native IOS app
Irrelevant already. Solution had been found.
View ArticleIonic in web. Hide browser address bar
They seem to be working on it now, maybe add a thumbs up to the ticket to see if they prioritize https://github.com/ionic-team/ionic/issues/19081
View ArticleError: spawn /Users/{name}/Library/Android/sdk/platform-tools/adb ENOENT
I just re-installed Android Studio on my laptop two days ago.
View ArticleError "tried calling SplashScreen.hide, but the SplashScreen plugin is not...
As usual it was my fault, I had forgotten that in the meantime I had modified this part of the code: initializeApp() { const context = this; context.settings.initAppSettings();...
View ArticleCapacitor compiled Ionic app: How to debug in Android Studio?
Try this: Remote Debugging WebViews with the Chrome Developer Tools.
View ArticleError "tried calling SplashScreen.hide, but the SplashScreen plugin is not...
Why do you have const context = this? Since things are classes this should scope correctly
View ArticleHow to hide the white screen after splash screen ionic 4 and capacitor
Thanks for your answer but Non, my App works fine, I got my splash screen then I got the white page 4 seconds later I got my app work, I think it is a problem of webView non ?
View ArticleDark Mode not working for ionic 5
@mhartington That’s right … Thanks for your help, it works now
View ArticleIonic/Vue app with Vuex/Firebase. Need help with persisting state!
Sure. You happen to have any free time? Maybe I can use Google Meet to show you what it is I’m working on. C’mon, you know you wanna see what’s caused me to pester you so much! lol… I can explain more...
View ArticleHow to get device orientation correctly
I need to get the device orientation to make some kind of compass. I saw that the old plugin | [2] used for this is now deprecated and that is suggested to use the W3C Device Orientation API now. I...
View Article[ng] ERROR in Cannot read property 'map' of undefined
TheGuy573: [ng] ERROR in Cannot read property ‘map’ of undefined Where this error is fired? Which file and which line? If you could paste the code here would be better.
View ArticlePlacing an ion-range inside ion-slide
Can you reproduce this on Stackblitz? You can use a template like this: https://stackblitz.com/edit/ionic-4-angular-8-start-template
View ArticleError: Type PdfViewerComponent is part of the declarations of 2 modules
i have a lazy loading components ionic project. i have import import { PdfViewerComponent } from ‘ng2-pdf-viewer’; @NgModule({ declarations: [ PdfViewerComponent ] }) export class Page1Module {} in...
View ArticleError: Type PdfViewerComponent is part of the declarations of 2 modules
ashok12: in page1.module.ts and page2.module.ts . Probably the same as here. Post your app.module.ts and both page modules here.
View ArticleError: Type PdfViewerComponent is part of the declarations of 2 modules
here’s my app.module.ts import { NgModule , ErrorHandler } from ‘@angular/core’; import { IonicApp, IonicModule , IonicErrorHandler } from ‘ionic-angular’; import { PdfViewerComponent } from...
View ArticlePass data from TabsPage to ChildTab
Hello to all. I am developing an app that has a 4 tabs This is the html page <ion-tabs> <ion-tab-bar slot="bottom"> <ion-tab-button tab="profilo"> <ion-icon...
View ArticleError: Type PdfViewerComponent is part of the declarations of 2 modules
Try the following: app.module.ts Leave the import of PdfViewerComponent and add the component in imports: []: ... FormsModule, IonicStorageModule.forRoot(), PipesModule, PdfViewerComponent ], ... both...
View Article[ng] ERROR in Cannot read property 'map' of undefined
TheGuy573: https://drive.google.com Would it be possible to use something like github or gitlab instead, that is designed for this sort of activity?
View ArticlePass data from TabsPage to ChildTab
I choose to put all network activity into services, not pages. If you follow this pattern as well, things become easy. Inject the service whereever it is needed and subscribe to the Observables it...
View Article