Should I unsubscribe Observables lists?
take(1) isn’t good enough. My favorite example of this problem is obs.filter(x => x!==null).take(1) obs never completes if it never emits a non-null value, despite the presence of take(1). So it’s...
View ArticleShould I unsubscribe Observables lists?
jaydz: Why first() as opposed to take(1) ? To emit an error if necessary? Pretty much. Imagine we have a “continue as guest” option that gives up on being authorized, so the token stream could...
View ArticleShould I unsubscribe Observables lists?
Definitely good to know. Was not aware of that.
View ArticleShould I unsubscribe Observables lists?
The app i’m working on right now just so happens to have a isVisitor status that I am observing, so that’s a very helpful point for me. Thanks @rapropos
View ArticleIonic Pro Clean-up failed
image.png1924x1172 188 KB I am having the same issue. Android 7.0.0.
View ArticleOpen Any File
I think I may already know the answer to this, but you know how in mobile apps like Amazon Drive or Google Drive you are able to view ANY file type within the app without having to download it? Like...
View ArticleIonic SMS - dual sim phone select which SIM to use
Hi, I use the Ionic SMS plugins and its working fine. My question is how do I select which sim the SMS plugin will use in sending SMS. An example scenario is if I have a phone with dual sim with...
View ArticleInAppBrowser does not go back to the previous state of my app
I found the solution. I had to remove the href="#" from anchor tag. It was a very silly mistake from me.
View ArticleAdb view console log when run on device
i have a problem when i run ionic cordova run android -c on device I received this screen 28755896_1131410350332369_298601968_o.png720x1280 74.1 KB
View ArticleUnresolved variable or type async await
My Project configuration is Node 6.10.0, Ionic 2.2.1, Typescript 2.0.6 and Angular 2.1.1. I have some other Ionic-native plugins v4.1.0-4.3.0. I am getting unresolved variable or type async await in...
View ArticleHow to build app for iPhone without Mac?
Is it possible to use PhoneGap Build for Ionic 3?
View ArticleUnresolved variable or type async await
I didn’t look at your code, because your description of your setup has a lot of red flags. Do you see how the versions you report are different from what’s in package.json? You could have all kinds of...
View ArticleUnresolved variable or type async await
Ok, the package.json I pasted here is from another project with this configuration ,which i forgot to mention, Ionic Framework Version: 3.9.2 Ionic CLI Version: 2.2.1 Ionic App Lib Version: 2.2.0...
View ArticleFacebook authentication working on one device but not in another one (in...
Hi@gabrielmarchesan If you are trying to distribute the debug build to your some of the customers,the facebook login did not work for them.Because in case of debug build there will be seperate key...
View ArticleIonic SMS - dual sim phone select which SIM to use
Check https://github.com/pbakondy/cordova-plugin-sim#under-the-hood Multiple sim handling requires Android API 22
View ArticleIonic and Visual Studio 2017
Of course you can use it with Visual Studio. I use it with VS since I worked with it several years already so I am used to it and don’t see any reason to switch. Why you should go with VS (my...
View Articlethis.platform.registerBackButtonAction doesn't work
What do you want to achieve ? As I can read your question it seems you want to detect if your Back Button is pressed and perform an action afterwards, right ? If that isnt the case then please explain...
View ArticleCustom Directive now working on second page
I used his tutorial too, but he told me by email that you need to follow the steps for each page, i.e you need a directive for each page.
View ArticleIonic SMS - dual sim phone select which SIM to use
The SIM plugins only read information from the SIM cards. What I need is to be able to select on what SIM to use in sending SMS, because currently, its always SIM 1 who are sending the SMS.
View ArticleButton click to turn on mobile gps
hi guys need a help, how to turn on mobile gps on button click… i need to turn on gps if gps turned off… here is my code: this.geolocation.getCurrentPosition().then((resp) => { this.lat =...
View Article