Tested on Ubuntu 16.04 and Windows 10 Redstone 1
Both boxes need to be on the same network (such that multicast packets can be passed between them)
- Setup JACK (easy to do with Cadence)
var sendError = function (err) { | |
console.log('Caught JS client error:'); | |
console.dir(err); | |
var xhr = new XMLHttpRequest(); | |
xhr.open('POST', '/api/error/add', true); | |
xhr.setRequestHeader('Content-type', 'application/json; charset=utf-8'); | |
xhr.send(JSON.stringify(err)); | |
}; |
android { | |
signingConfigs { | |
getByName("debug") { | |
keyAlias = "debug" | |
keyPassword = "my debug key password" | |
storeFile = file("/home/miles/keystore.jks") | |
storePassword = "my keystore password" | |
} | |
create("release") { | |
keyAlias = "release" |
Tested on Ubuntu 16.04 and Windows 10 Redstone 1
Both boxes need to be on the same network (such that multicast packets can be passed between them)
/* | |
* Copyright (c) 2009-2017, Farooq Mela | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are met: | |
* | |
* 1. Redistributions of source code must retain the above copyright | |
* notice, this list of conditions and the following disclaimer. | |
* 2. Redistributions in binary form must reproduce the above copyright |