Add Fitbot project files and update Gradle settings

This commit is contained in:
SebasKoedam
2024-04-23 14:40:49 +02:00
parent 9506665a3e
commit b505086a66
9 changed files with 70 additions and 6 deletions

View File

@@ -0,0 +1,4 @@
<?xml version='1.0' encoding='utf-8'?>
<robot>
<users-robotsdk minSdkVersion='API 7' />
</robot>

View File

@@ -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);
}
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Fitbot">
</androidx.constraintlayout.widget.ConstraintLayout>

View File

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