Eduardo Speroni

Results 120 comments of Eduardo Speroni

I see. You should probably add that to the issue description, as #107 is describing the iOS scenario.

Yes, I'm using angular. All tests were done with `--bundle --env.aot --env.uglify --release` We have a lot of plugins already and our app is pretty big at this point. We're...

The test repo is done. Unfortunately I can't test on linux right now to enable snapshots. All dependencies are updated (webpack, core modules and angular). See the codecache branch: https://github.com/edusperoni/sample-Groceries/tree/codecache...

I believe Angular in general is making a move away from `zone.js`. With the new async/await, it becomes impossible to target es2017 and have angular work consistently. With IE finally...

Furthermore, if you create an abstraction for android.R, the issue vanishes: ``` package com.example; public class TestClass { public static int test() { return android.R.integer.config_shortAnimTime; } } ``` Calling `com.example.TestClass.test()`...

@farfromrefug Here you go: ``` getAndroidR(rtype: string, field: string): number { return +java.lang.Class.forName("android.R$" + rtype).getDeclaredField(field).get(null); } ``` Example: https://play.nativescript.org/?template=play-ng&id=Raa1Ru&v=3 I've found a way to query android.R with minimal lag (should...

If you must use the full androidR, I made an `androidR` hack using JS Proxy: https://play.nativescript.org/?template=play-ng&id=em2l8m&v=1 if you copy `fast-android-r.ts` to your project you should be able to use `androidR.integer.whatever`...

@room101b `NsLocationStrategy` has an array of outlets (`locationStrategy.outlets`, private. Your example only has `primary` outlet), which has an array (used as a stack) of `LocationState` (`2`,`1`,`0`), which has `isPageNavigation` (`[PAGE]`)...

Please don't merge this yet, as it seems it might not fully solve the issue

@jamescodesthings I have to investigate it some more, but I believe this happens because tap is a event that any view can have, and an angular view is a ProxyViewContainer,...