Ionic 1.0.0
gusreyes01 opened this issue · 6 comments
Are there any plans to make this app compatible with Ionic 1.0.0 Uranium Unicorn?
I'd love to do it and have been thinking about doing so for a while. However I lack the time to do it.
I'm just getting started with Ionic and your app has been really useful to handle authentication with Oauth, however I've seen some issues when upgrading the Ionic version that I cannot yet resolve. Let me know if you need any help.
@gusreyes01 guess what I'll give the update to 1.0.0 a shot this week end. This should be fun. I'll update the repo once I've done so.
That's great news! I'll be aware of any updates.
I can give you a heads up on what I've found not to be working so far.
- IonicPopups ( Guess you have to rebuild the scsss using "gulp sass" )
- httpProvider has to be updated:
(http://stackoverflow.com/questions/23804981/alternative-of-httpprovider-responseinterceptors)
Hey @gusreyes01,
yes indeed you have to change line 76 in /services/interceptors/http-auth-interceptor.js from
$httpProvider.responseInterceptors.push(interceptor);
to
$httpProvider.interceptors.push(interceptor);
since responeInterceptors was discontinued in 1.3 and up. I've done that in one of my other projects and it seems to work. Haven't had much time to finish working on this but I'll resume updating to 1.0.0 next week end. Thank you for your patience.
Yeah that works so far. Thank you for your support.