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.
-}