Google autocomplete place_changed doesn't trigger on iOS only
The fix is enabling Google Places API for iOS on the google api library
View ArticleShould I unsubscribe Observables lists?
@AaronSterling, It seems strange that a Subject could emit after completion. Chalk it up to the imperfections of computer tech?? I certainly don’t have 50 observables on any page, but I do tend to...
View ArticleIonic InAppPurchase2 - The item you requested is not available for purchase
Hello, So I set up the inapppurchase 2 plugin similar to the example below: GitHub thielCole/ionic-iap2 ionic-iap2 - Ionic 3+ In App Purchase 2 Example When I got to click on a purchase button for a...
View ArticleShould I unsubscribe Observables lists?
AaronSterling: I think there’s a benefit to forcing yourself to know exactly what you’re tearing down in your teardown logic I like having teardown logic live right next to buildup logic. It’s sort of...
View ArticleShould I unsubscribe Observables lists?
rapropos: if I add a new Observable later, I only have to edit one place I second that notion. Looks like I’m on team @rapropos on this one.
View ArticleIonic 2 App closes after taking picture
If this problem can be isolated to Android Oreo, read this. It’s a permission granularity problem.
View Article“The item that you requested is not available for purchase” android In-App...
Hello! I am running into the same issue. Did you find a solution?
View ArticleCustom Directive now working on second page
(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)
View Articlethis.platform.registerBackButtonAction doesn't work
i try different app (conference app- blank app) its worked but i try my app it doesn’t work . I’ve been struggling 2 days I could not find the cause my app.component rootPage: any; public counter = 0;...
View ArticleHow good is the ionic pro cloud building?
Phonegap build is a good, cheap alternative. $10/month and can build for iOS and Android using Windows. That’s not to knock Pro Build. I’m sure it works great. But if cost is an issue, you can save 20...
View ArticleIonic Pro Monitoring
Haven’t even revisited monitioring since the last time this topic was active. Sorry man.
View ArticleShould I unsubscribe Observables lists?
rapropos: I like having teardown logic live right next to buildup logic. Do you mean: thing = { buildUp: doThis(), tearDown: doThat(), whileAlive: doMainTask() } because I can see the benefit of that....
View ArticleShould I unsubscribe Observables lists?
jaydz: I am curious about if the Subject emits unexpectedly, that line though. If you screwed up your code and the Subject did something you didn’t intend for it to do. Finding that error can be a...
View ArticleShould I unsubscribe Observables lists?
Sorry to interject, but this is how I am implementing the “tripwire effect” this.detailService.filterSolutions().pipe(takeUntil(this.destroy$)) .subscribe(data => { if (data) { this.solutions =...
View ArticleShould I unsubscribe Observables lists?
AaronSterling: Do you mean The syntax you suggest seems reasonable. I’m less tied to how it’s written than where, because I generally find bugs caused by interactions of diffusely written code to be...
View ArticlePrivacy - Location When In Use Usage Description
Sorry. Found how to add it in the plugin description.
View ArticleShould I unsubscribe Observables lists?
Makes sense. I’ll add that extra layer of defense to my Subjects.
View ArticleTabs persist after logging out of app, start stacking on log in
Thanks @sanjaychavan worked fine
View ArticleShould I unsubscribe Observables lists?
Tommertom: streams that do not complete during the lifetime of component I recently encountered a particularly nasty bug related to this concept. export class AuthService { authtoken = new...
View ArticleShould I unsubscribe Observables lists?
Why first() as opposed to take(1) ? To emit an error if necessary?
View Article