0.0.9 • Published 8 years ago

logcatio v0.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

logcatIO

A combination of Android Logcat & Socket.IO. Add the library to our app, check the logs in your browser.

#Why? Because sometimes you want to distribute and read the remote logs from a particular release.

#How? Install & run the logcatIO server,

$ npm install --g logcat.io
$ logcatio

Deploy

Add the client library to your android app,

repositories {
// ...
 maven { url 'http://urucas.github.io/logcatIO/'}
// ...
}

dependencies {
    // ...
    compile 'io.socket:socket.io-client:0.6.2'
    compile 'com.urucas:logcatio:1.0.4@aar'
}

and initialize it,

// use the namespace given by the logcatIO server
// or the url where you run the logcatIO server
String namespace = "http://192.168.0.13:5000";
LogcatIO.Initialize(namespace);

Check the logcat in your browser!