Kotlin Android Application For Receiving a Live Stream from A RaspberryPi.
Server implementation is available at robsmall/flask-raspi-video-streamer
- Jake Wharton talk on use of Retrofit to help understand cool features.
- Jake Wharton talk on Retrofit and RxJava being used together
- Kotlin & Retrofit article -- See related github.
- Kotlin & RxJava & RxAndroid article -- See related github.
In the build.gradle
file licated in app
, you must create and set the path and properties for secureProperties
.
For Example:
I have a file located at /Users/robsmall/src/android/RaspiVideoStreamer/secure-gradle.properties
that contains:
BaseApiUrl=http://10.0.0.7:5000
BaseRawStreamUrl=http://10.0.0.7:8000
For more information on this gradle plugin, please Check the Java Prop File documentation
For the example server, check out robsmall/flask-raspi-video-streamer