razorsyntax

Results 10 comments of razorsyntax

It appears `tools:overrideLibrary="com.jesusm.kfingerprintmanager"` may not be overriding the way it should. Anyone run across a solution yet?

I haven't gotten that far yet. I installed the plugin, followed the tutorial by placing the relevant appsync code in the main.ts. I also reinstalled the android & ios platforms...

Update: I had to installed Nativescript-Zip (from your package.json) and I got passed the webpack errors. I'm still receiving the stacktrace when the app loads: ``` Webpack compilation complete. Watching...

Just for info... here's my package.json: ``` { "description": "{name}", "license": "SEE LICENSE IN ", "readme": "NativeScript Application", "repository": "", "nativescript": { "id": "{bundleid}", "tns-ios": { "version": "6.0.2" }, "tns-android":...

I don't have solid repro steps... actually... I do, but it doesn't make sense. I install app aync and then I get those errors. I uninstall the plugin (remove all...

@jameszonk > 4. I discovered that the angular cli are creating tsconfig with `"paths": { "~/*": [ "src/*" ], "*": [ "./node_modules/*" ]` > 5. removed node modules resolution =>...

In tsconfig.json... Before: ``` "paths": { "~/*": [ "app/*" ], "*": [ "./node_modules/tns-core-modules/*", "./node_modules/*" ] } ``` After: ``` "paths": { "~/*": [ "app/*" ], "*": [ "./node_modules/tns-core-modules/*", ] }...

I didn't want to close this until someone else was able to resolve their issue with my last fix.

Well cool. It definitely works. I was able to run the demo and it works in iOS. Which is great. In my project, however, if I pull out the reusable...

Is it possible you might have a race condition here? Perhaps using the ```(loaded)="onDOMLoad($event)"``` could save you from needing the ```setTimeout```? ` setTimeout(() => { this.createBanner(); }, 1500); `