I hereby claim:
- I am jbristowe on github.
- I am jbristowe (https://keybase.io/jbristowe) on keybase.
- I have a public key whose fingerprint is A984 A74D 2CF8 06C9 6D30 1FB4 BEA2 A05C 081D F043
To claim this, I am signing this object:
| { | |
| "version": "npm run release", | |
| "preversion": "npm test", | |
| "postversion": "git push && git push --tags", | |
| "clean": "npm-run-all -p clean:*", | |
| "clean:build": "rimraf build", | |
| "clean:dist": "rimraf dist", | |
| "clean:release": "rimraf release", | |
| "build": "webpack --display-error-details", | |
| "build:release": "cross-env NODE_ENV=production npm run build", |
I hereby claim:
To claim this, I am signing this object:
NativeScript LiveSync does not currently emit console output (via console.log()) via the CLI:
$ tns livesync ios --emulator —watch
There's a couple of ways to make this work. In both cases, you'll need the hash for the iOS simulator/device you're targeting:
$ instruments -s devices
| var context = new LAContext(); | |
| try { | |
| if (context.canEvaluatePolicyError(LAPolicy.LAPolicyDeviceOwnerAuthenticationWithBiometrics)) { | |
| context.evaluatePolicyLocalizedReasonReply(LAPolicy.LAPolicyDeviceOwnerAuthenticationWithBiometrics, | |
| "Are you the device owner?", | |
| function (success, error) { | |
| if (error) { | |
| // error; problem verifying identity | |
| return; | |
| } |
| var listener = new Listener("NativeScript Rocks!!11!"); | |
| trace.addEventListener(listener); |
| [ | |
| { | |
| "City": "Sofia", | |
| "Country": "Bulgaria", | |
| "Country_ISO3": "BGR", | |
| "Pop1950": 520, | |
| "Pop1955": 620, | |
| "Pop1960": 710, | |
| "Pop1965": 810, | |
| "Pop1970": 890, |
Based on observations made with PhoneGap/Cordova 3.4, Visual Studio 2013 Update 2 (RTM), and Windows Phone 8.1.
| using EQATEC.Analytics.Monitor; | |
| using System.Diagnostics; | |
| public class DebugLogger : ILogAnalyticsMonitor | |
| { | |
| public void LogMessage(string message) | |
| { | |
| Debug.WriteLine("MESSAGE: " + message); | |
| } |