mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-05 01:10:48 +00:00
This is more of a proof-of-concept/demo for using a websocket with Spinner. Gives an example of how we could push live updates to the webapp. Also, the logger is actually nice. Guaranteed to never get cluttered with system logs. Looks basically identical to our other log viewers. Filtering is basic but fast. And we could build much better tooling on top of this.
18 lines
358 B
Groovy
18 lines
358 B
Groovy
plugins {
|
|
id 'signal-library'
|
|
}
|
|
|
|
android {
|
|
namespace 'org.signal.spinner'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core-util')
|
|
|
|
implementation libs.jknack.handlebars
|
|
implementation libs.nanohttpd.webserver
|
|
implementation libs.nanohttpd.websocket
|
|
implementation libs.androidx.sqlite
|
|
|
|
testImplementation testLibs.junit.junit
|
|
} |