Appt2 error
unhandled promise rejections are deprecated.In the future, promise rejections that are not handler will terminate the node.js process with a non-zero exit code
View ArticleIonic 2 App closes after taking picture
Do you have (public camera: Camera) set in your constructor. I’ve seen this issue occur when people have it set to private. I’ve also seen this occur when trying to set saveToPhotoAlbum: true (or...
View ArticleIonic 2 App closes after taking picture
This may be the result of memory issues too, which is a common problem with the Camera plugin. Capacitor is introducing some things to fix this, but I’m not sure if they’re finished yet.
View ArticleIonic 2 App closes after taking picture
SigmundFroyd: This may be the result of memory issues too Yep. That’s another usual suspect. Not sure if reducing the target width / height or quality might be helpful in that case.
View ArticleText not showing on Ionic App
Hi Aman, nice to see your progress! Note that in your .ts file you need to create the variables: public MaxNum: number; public MinNum: number; And in the .html file you can do access it by the...
View ArticleIonic 2 App closes after taking picture
so i have to make it as a public camera:camera right ??..initially it is private…
View ArticleIonic 2 App closes after taking picture
Yeah, I’d give it a try at the least. It certainly won’t hurt. FYI, I’m pretty sure setting imports to private in your constructor is useless. That property gets squashed when the code gets...
View ArticleIonic 2 App closes after taking picture
no am using typescript.(ionic 3).and in my app camera plugin working properly for android 4.4 device but not work for android 5 version… for 6 it also work
View ArticleIonic 2 App closes after taking picture
Yeah, all that TypeScript turns into JavaScript when all is said and done. It’s complicated. I don’t understand the whole process but I think that private properties (in constructor only, private...
View ArticleIonic SMS plugin not working in dual sim phones
Hi @FrancoisIonic, which ionic supported SMS plugin are you using in your app which is working in dual sim phone. Please share the details. Thanks.
View ArticleShould I unsubscribe Observables lists?
stackoverflow.com Freeing JavaScript object javascript asked by pion on 11:20PM - 23 Dec 10 Removing the reference allows javascript to do garbage collection on the new statement?
View ArticleShould I unsubscribe Observables lists?
Maybe so? I was under the impression calling this._destroy$.complete() released the subject from having any further effect until the page reinits. I’ll check out that link. Thanks
View ArticleShould I unsubscribe Observables lists?
Complete() ends the stream but does not necessarily clear the reference to the memory used by Subject as referenced by this._destroy (At least, that would need confirmation)
View ArticleShould I unsubscribe Observables lists?
I see your point. I’ll run some tests today. Curiosity = piqued
View ArticleFollowing another Ionic tutorial
Try to run a sample project out of studio (not ionic/cordova) and see if the emulator fires up at all and the test app runs on your device This to see if your studio install is sound
View ArticleShould I unsubscribe Observables lists?
AaronSterling: Or use the async pipe, which unsubscribes automatically. Definitely a most practical solution. I use the observable pipe, takeUntil, switchMap, etc. then subscribe because a majority of...
View ArticleIssues with app since imorting Admob
EDIT: Never mind, figured it out. Well not figured it out. I had two versions of admob, the free and the pro. I removed the pro and stopped getting that error. Hello, Since adding the admob plugin...
View Article