From b505086a66022a81e351449a3cd73b834dad7ddb Mon Sep 17 00:00:00 2001 From: SebasKoedam Date: Tue, 23 Apr 2024 14:40:49 +0200 Subject: [PATCH] Add Fitbot project files and update Gradle settings --- code/Fitbot/.idea/.gitignore | 3 +++ code/Fitbot/.idea/compiler.xml | 6 ++++++ code/Fitbot/.idea/gradle.xml | 19 +++++++++++++++++++ code/Fitbot/.idea/misc.xml | 9 +++++++++ code/Fitbot/.idea/vcs.xml | 6 ++++++ .../app/src/main/assets/robot/robotsdk.xml | 4 ++++ .../app/src/main/java/com/fitbot/Fitbot.java | 14 ++++++++++++++ .../src/main/res/layout/activity_fitbot.xml | 9 +++++++++ code/src/app/src/test/java/HelloHuman.java | 6 ------ 9 files changed, 70 insertions(+), 6 deletions(-) create mode 100644 code/Fitbot/.idea/.gitignore create mode 100644 code/Fitbot/.idea/compiler.xml create mode 100644 code/Fitbot/.idea/gradle.xml create mode 100644 code/Fitbot/.idea/misc.xml create mode 100644 code/Fitbot/.idea/vcs.xml create mode 100644 code/src/Fitbot/app/src/main/assets/robot/robotsdk.xml create mode 100644 code/src/app/src/main/java/com/fitbot/Fitbot.java create mode 100644 code/src/app/src/main/res/layout/activity_fitbot.xml delete mode 100644 code/src/app/src/test/java/HelloHuman.java diff --git a/code/Fitbot/.idea/.gitignore b/code/Fitbot/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/code/Fitbot/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/code/Fitbot/.idea/compiler.xml b/code/Fitbot/.idea/compiler.xml new file mode 100644 index 0000000..fb7f4a8 --- /dev/null +++ b/code/Fitbot/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/code/Fitbot/.idea/gradle.xml b/code/Fitbot/.idea/gradle.xml new file mode 100644 index 0000000..4e3844e --- /dev/null +++ b/code/Fitbot/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/code/Fitbot/.idea/misc.xml b/code/Fitbot/.idea/misc.xml new file mode 100644 index 0000000..6199cc2 --- /dev/null +++ b/code/Fitbot/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/code/Fitbot/.idea/vcs.xml b/code/Fitbot/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/code/Fitbot/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/code/src/Fitbot/app/src/main/assets/robot/robotsdk.xml b/code/src/Fitbot/app/src/main/assets/robot/robotsdk.xml new file mode 100644 index 0000000..eb58018 --- /dev/null +++ b/code/src/Fitbot/app/src/main/assets/robot/robotsdk.xml @@ -0,0 +1,4 @@ + + + + diff --git a/code/src/app/src/main/java/com/fitbot/Fitbot.java b/code/src/app/src/main/java/com/fitbot/Fitbot.java new file mode 100644 index 0000000..2b04a33 --- /dev/null +++ b/code/src/app/src/main/java/com/fitbot/Fitbot.java @@ -0,0 +1,14 @@ +package com.fitbot; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; + +public class Fitbot extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_fitbot); + } +} \ No newline at end of file diff --git a/code/src/app/src/main/res/layout/activity_fitbot.xml b/code/src/app/src/main/res/layout/activity_fitbot.xml new file mode 100644 index 0000000..3abe97f --- /dev/null +++ b/code/src/app/src/main/res/layout/activity_fitbot.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/code/src/app/src/test/java/HelloHuman.java b/code/src/app/src/test/java/HelloHuman.java deleted file mode 100644 index 7228283..0000000 --- a/code/src/app/src/test/java/HelloHuman.java +++ /dev/null @@ -1,6 +0,0 @@ -public class HelloHuman { - // Create a new say action. - Say say = SayBuilder.with(qiContext) // Create the builder with the context. - .withText("Hello human!") // Set the text to say. - .build(); // Build the say action. -}