Signal-Android/spinner/lib/build.gradle
Greyson Parrelli 6a974c48ef Add a log viewer to Spinner.
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.
2023-09-28 19:44:46 -04:00

18 lines
No EOL
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
}