Setting up basic infrastructure for uploading events and datapoints to remote API server. Next step is to upload the required datapoints for each event, and handle network failures etc.

This commit is contained in:
Graham Jones
2022-01-03 18:40:45 +00:00
parent 361e4a09fd
commit 7ffdb3c3dc
6 changed files with 253 additions and 224 deletions

View File

@@ -112,6 +112,19 @@
android:layout_weight="1"
android:text="Create Datapoint" />
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/getLocalEventsBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="getLocalEvents" />
</LinearLayout>
</LinearLayout>