diff --git a/apps/android/main/AndroidManifest.xml b/apps/android/main/AndroidManifest.xml
deleted file mode 100644
index 47609081..00000000
--- a/apps/android/main/AndroidManifest.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/gen/com/example/ian/titanscout/BuildConfig.java b/apps/android/main/gen/com/example/ian/titanscout/BuildConfig.java
new file mode 100644
index 00000000..e4e8299e
--- /dev/null
+++ b/apps/android/main/gen/com/example/ian/titanscout/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package com.example.ian.titanscout;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/apps/android/main/gen/com/example/ian/titanscout/Manifest.java b/apps/android/main/gen/com/example/ian/titanscout/Manifest.java
new file mode 100644
index 00000000..f042a814
--- /dev/null
+++ b/apps/android/main/gen/com/example/ian/titanscout/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package com.example.ian.titanscout;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/apps/android/main/gen/com/example/ian/titanscout/R.java b/apps/android/main/gen/com/example/ian/titanscout/R.java
new file mode 100644
index 00000000..4befba37
--- /dev/null
+++ b/apps/android/main/gen/com/example/ian/titanscout/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package com.example.ian.titanscout;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/apps/android/main/java/com/example/ian/titanscout/Match.kt b/apps/android/main/java/com/example/ian/titanscout/Match.kt
deleted file mode 100644
index de3a6614..00000000
--- a/apps/android/main/java/com/example/ian/titanscout/Match.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-package com.example.ian.titanscout
-
-
-class Match (var ind: Int, var redTeams: Array, var blueTeams: Array) {
- // class body
-
- fun getScouts(): Int {
- var x = 0
- for (red in redTeams) {
- if (red.hasScouts()) {
- x++
- }
- }
- for (blue in blueTeams) {
- if (blue.hasScouts()) {
- x++
- }
- }
- return x
- }
-}
-
-class Team (var num: String, var color:String, var scouts:Array) {
-
- fun hasScouts() : Boolean {
- if (scouts.size > 0 && !scouts[0].equals("")) {
- return true
- }
- return false
- }
-}
\ No newline at end of file
diff --git a/apps/android/main/java/com/example/ian/titanscout/MatchAdapter.kt b/apps/android/main/java/com/example/ian/titanscout/MatchAdapter.kt
deleted file mode 100644
index 647917bb..00000000
--- a/apps/android/main/java/com/example/ian/titanscout/MatchAdapter.kt
+++ /dev/null
@@ -1,58 +0,0 @@
-package com.example.ian.titanscout
-
-import android.content.Context
-import android.view.LayoutInflater
-import android.view.View
-import android.view.ViewGroup
-import android.widget.BaseAdapter
-import android.widget.ProgressBar
-import android.widget.TextView
-
-class MatchAdapter(private val context: Context,
- private val dataSource: Array) : BaseAdapter() {
-
- private val inflater: LayoutInflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
-
- //1
- override fun getCount(): Int {
- return dataSource.size
- }
-
- //2
- override fun getItem(position: Int): Any {
- return dataSource[position]
- }
-
- //3
- override fun getItemId(position: Int): Long {
- return position.toLong()
- }
-
- //4
- override fun getView(position: Int, convertView: View?, parent: ViewGroup): View {
- // Get view for row item
- val rowView = inflater.inflate(R.layout.list_item, parent, false)
-
-
- // Get title element
- val titleTextView = rowView.findViewById(R.id.titleTV) as TextView
-
- // Get subtitle element
- val subtitleTextView = rowView.findViewById(R.id.subtitle) as TextView
-
- // Get progressBar element
- val progressBar = rowView.findViewById(R.id.progressBar) as ProgressBar
-
- val match = getItem(position) as Match
-
- val str = "Match " + match.ind
- titleTextView.text = str
- val str2 = match.getScouts().toString() + " of 6"
- subtitleTextView.text = str2
- progressBar.progress = (1.0 * progressBar.max * match.getScouts() / (6.0)).toInt()
-
- return rowView
- }
-
-
-}
\ No newline at end of file
diff --git a/apps/android/main/java/com/example/ian/titanscout/MatchesTableView.kt b/apps/android/main/java/com/example/ian/titanscout/MatchesTableView.kt
deleted file mode 100644
index df7c58c7..00000000
--- a/apps/android/main/java/com/example/ian/titanscout/MatchesTableView.kt
+++ /dev/null
@@ -1,188 +0,0 @@
-package com.example.ian.titanscout
-
-import android.graphics.Color
-import android.os.Bundle
-import android.support.design.widget.FloatingActionButton
-import android.support.v7.app.AlertDialog
-import android.support.v7.app.AppCompatActivity;
-
-import com.google.firebase.firestore.FirebaseFirestore
-import org.json.JSONObject
-import com.google.zxing.WriterException
-import android.graphics.Bitmap
-import android.widget.*
-import net.glxn.qrgen.android.QRCode
-
-
-class MatchesTableView : AppCompatActivity() {
-
-
- var shouldShow = true
- // Reference the database to be used in the rest of the class.
- val db = FirebaseFirestore.getInstance()
- var alias = ""
- override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- setContentView(R.layout.activity_matches_table_view)
-// setSupportActionBar(toolbar)
-
- var matches = arrayOf()
- val TAG = "MainActivity"
- val docRef = db.collection("appBuilding").document("schedule")
- docRef.get().addOnSuccessListener { documentSnapshot ->
- val stringData = documentSnapshot.data.toString()
-
- // Get data from the database and process it into an array of Matches.
- val schedule = Response(stringData).getJSONArray("matches")
- for (i in 0..(schedule.length() - 1)) {
- val item = schedule.getJSONObject(i)
- val reds = Response(item["RED"].toString())
- val blues = Response(item["BLUE"].toString())
- val redTeams = getTeamArrayFromJSON(reds, "RED")
- val blueTeams = getTeamArrayFromJSON(blues, "BLUE")
- matches += Match(i+1, redTeams, blueTeams)
- }
-
- // update the user's alias
- alias = intent.getStringExtra("alias")
- updateAlias(alias)
-
-
- val listView = findViewById(R.id.match_list_view)
-
- val listItems = arrayOfNulls(matches.size)
-
- for (i in 0 until matches.size) {
- val match = matches[i]
- listItems[i] = "Match " + match.ind
- }
-
-
-// val adapter = ArrayAdapter(this, android.R.layout.simple_list_item_1, listItems)
-// listView.adapter = adapter
-
- val adapter = MatchAdapter(this, matches)
- listView.adapter = adapter
-
- }
-
- val fab = findViewById(R.id.fab)
- fab.setImageResource(R.drawable.qrcodeicon)
- fab.setColorFilter(Color.parseColor("#FFFFFF"))
-
-
- fab.setOnClickListener { view ->
-
- // QR Button pressed
-
- if (shouldShow) {
- try {
-
- val bitmap = TextToImageEncode(intent.getStringExtra("auth"))
-
-
- findViewById(R.id.imageView).setImageBitmap(bitmap)
-
- } catch (e: WriterException) {
- e.printStackTrace()
- }
-
- } else {
- findViewById(R.id.imageView).setImageResource(android.R.color.transparent)
- }
-
- shouldShow = !shouldShow
- }
-
- findViewById(R.id.changeAliasButton).setOnClickListener {
- showCreateCategoryDialog()
- }
-
-
- }
-
-
- fun TextToImageEncode(text: String): Bitmap {
-
- // generate a QR code from the given text.
- return QRCode.from(text).withSize(1000, 1000).bitmap()
-
-
- }
-
- // From https://code.luasoftware.com/tutorials/android/android-text-input-dialog-with-inflated-view-kotlin/
- fun showCreateCategoryDialog() {
- val context = this
- val builder = AlertDialog.Builder(context)
- builder.setTitle("Change Alias")
-
- // https://stackoverflow.com/questions/10695103/creating-custom-alertdialog-what-is-the-root-view
- // Seems ok to inflate view with null rootView
- val view = layoutInflater.inflate(R.layout.dialog_new_category, null)
-
- val categoryEditText = view.findViewById(R.id.categoryEditText) as EditText
-
- builder.setView(view)
-
- // set up the ok button
- builder.setPositiveButton(android.R.string.ok) { dialog, p1 ->
- val newCategory = categoryEditText.text
- var isValid = true
- if (newCategory.isBlank()) {
- categoryEditText.error = "Some String"
- isValid = false
- }
-
- if (isValid) {
- // do something
- updateAlias(categoryEditText.text.toString())
- }
-
- if (isValid) {
- dialog.dismiss()
- }
- }
-
- builder.setNegativeButton(android.R.string.cancel) { dialog, p1 ->
- dialog.cancel()
- }
-
- builder.show();
- }
-
- fun updateAlias(withString: String) {
- alias = withString
- val str = "Hello! I'm " + withString
- findViewById(R.id.aliasTextView).text = str
- }
-
- // When given a JSON containing teams and scouts like this : {"team-4096":[],"team-101":["scoutName"],"team-4292":["ScoutName", "ScoutName32"]}},
- // The function will convert it to a Team Array
- fun getTeamArrayFromJSON(json: JSONObject, forColor:String) : Array {
- var teams = arrayOf()
- val keys = json.keys()
- while (keys.hasNext()) {
- // get the key
- val key = keys.next()
-
- // Manually parse the string into an array of strings.
- var vs = json.get(key).toString()
- var scouts = arrayOf()
- vs = vs.substring(1,vs.length-1)
- if (!vs.equals("") && !vs.contains(",")) {
- scouts += vs.substring(1,vs.length-1)
- }
- for (str in vs.split(",")) {
- if (str.length>2) {
- scouts += str.substring(1,str.length-1)
- }
- }
-
- teams += Team(key.substring(5), forColor, scouts)
-
- }
- return teams
-
- }
-
-}
diff --git a/apps/android/main/java/com/example/ian/titanscout/PrematchesActivity.kt b/apps/android/main/java/com/example/ian/titanscout/PrematchesActivity.kt
deleted file mode 100644
index b0874ff4..00000000
--- a/apps/android/main/java/com/example/ian/titanscout/PrematchesActivity.kt
+++ /dev/null
@@ -1,56 +0,0 @@
-package com.example.ian.titanscout
-
-import android.content.Intent
-import android.support.v7.app.AppCompatActivity
-import android.os.Bundle
-import android.widget.Button
-import android.widget.EditText
-import org.json.JSONObject
-
-
-
-// Classes taken from https://stackoverflow.com/questions/41928803/how-to-parse-json-in-kotlin.
-// Inputs a string and outputs a JSONObject. This was a quick alternative to importing another library.
-class Response(json: String) : JSONObject(json) {
- val type: String? = this.optString("type")
- val data = this.optJSONArray("data")
- ?.let { 0.until(it.length()).map { i -> it.optJSONObject(i) } } // returns an array of JSONObject
- ?.map { Foo(it.toString()) } // transforms each JSONObject of the array into Foo
-}
-// Helper for the above class
-class Foo(json: String) : JSONObject(json) {
- val id = this.optInt("id")
- val title: String? = this.optString("title")
-}
-
-
-class PrematchesActivity : AppCompatActivity() {
-
-
- override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- setContentView(R.layout.activity_alias)
-
-
-
- findViewById(R.id.updateProfileButton).setOnClickListener {
-
-
- // Get alias from the edittext and clear the edittext
- val alias = findViewById(R.id.aliasField).text.toString()
- findViewById(R.id.aliasField).text.clear()
-
- //
- val intent2 = Intent(this, MatchesTableView::class.java)
- intent2.putExtra("alias", alias)
- intent2.putExtra("auth", intent.getStringExtra("auth"))
- startActivity(intent2)
-
-
- }
-
- }
-
-}
-
-
diff --git a/apps/android/main/java/com/example/ian/titanscout/qrActivity.java b/apps/android/main/java/com/example/ian/titanscout/qrActivity.java
deleted file mode 100644
index 216058b6..00000000
--- a/apps/android/main/java/com/example/ian/titanscout/qrActivity.java
+++ /dev/null
@@ -1,164 +0,0 @@
-package com.example.ian.titanscout;
-
-import android.app.Activity;
-import android.content.Intent;
-import android.graphics.Bitmap;
-import android.support.annotation.NonNull;
-import android.support.v7.app.AppCompatActivity;
-import android.os.Bundle;
-import android.util.Log;
-import android.widget.Button;
-import android.widget.EditText;
-import android.widget.ImageView;
-import android.widget.TextView;
-import android.widget.Toast;
-import com.google.android.gms.tasks.OnCompleteListener;
-import com.google.android.gms.tasks.Task;
-import com.google.firebase.firestore.*;
-import com.google.zxing.BarcodeFormat;
-import com.google.zxing.MultiFormatWriter;
-import com.google.zxing.WriterException;
-import com.google.zxing.common.BitMatrix;
-import com.google.zxing.integration.android.IntentIntegrator;
-import com.google.zxing.integration.android.IntentResult;
-
-import static android.widget.Toast.makeText;
-
-
-public class qrActivity extends AppCompatActivity {
- ImageView imageView;
- Button button;
- Button btnScan;
- EditText editText;
- String EditTextValue ;
- Thread thread;
- public final static int QRcodeWidth = 350;
- Bitmap bitmap;
-
- TextView tv_qr_readTxt;
- private Object MainActivity;
-
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activityqr);
-
-// // WARNING: TAKE OUT OF FINAL CODE, ONLY FOR TESTING
-// this.move("auth-team-2022");
-
- IntentIntegrator integrator = new IntentIntegrator(qrActivity.this);
- integrator.setDesiredBarcodeFormats(IntentIntegrator.ALL_CODE_TYPES);
- integrator.setPrompt("Scan a teammate's QR!");
- integrator.setCameraId(0);
- integrator.setBeepEnabled(false);
- integrator.initiateScan();
-
- imageView = (ImageView)findViewById(R.id.imageView);
- editText = (EditText)findViewById(R.id.editText);
- button = (Button)findViewById(R.id.button);
- btnScan = (Button)findViewById(R.id.btnScan);
- tv_qr_readTxt = (TextView) findViewById(R.id.tv_qr_readTxt);
-
- }
-
-
- Bitmap TextToImageEncode(String Value) throws WriterException {
- BitMatrix bitMatrix;
- try {
- bitMatrix = new MultiFormatWriter().encode(
- Value,
- BarcodeFormat.DATA_MATRIX.QR_CODE,
- QRcodeWidth, QRcodeWidth, null
- );
-
- } catch (IllegalArgumentException Illegalargumentexception) {
-
- return null;
- }
- int bitMatrixWidth = bitMatrix.getWidth();
-
- int bitMatrixHeight = bitMatrix.getHeight();
-
- int[] pixels = new int[bitMatrixWidth * bitMatrixHeight];
-
- for (int y = 0; y < bitMatrixHeight; y++) {
- int offset = y * bitMatrixWidth;
-
- for (int x = 0; x < bitMatrixWidth; x++) {
-
- pixels[offset + x] = bitMatrix.get(x, y) ?
- getResources().getColor(R.color.QRCodeBlackColor):getResources().getColor(R.color.QRCodeWhiteColor);
- }
- }
- Bitmap bitmap = Bitmap.createBitmap(bitMatrixWidth, bitMatrixHeight, Bitmap.Config.ARGB_4444);
-
- bitmap.setPixels(pixels, 0, 350, 0, 0, bitMatrixWidth, bitMatrixHeight);
- return bitmap;
- }
-
-
- void move(String withCode) {
- Log.e("START", "START");
- Intent intent = new Intent(this, PrematchesActivity.class);
- intent.putExtra("auth", withCode);
- startActivity(intent);
-
- Log.e("END", "END");
- }
-
- @Override
- protected void onActivityResult(int requestCode, final int resultCode, Intent data) {
-
-
-
-
- final IntentResult result = IntentIntegrator.parseActivityResult(requestCode, resultCode, data);
- if(result != null) {
- if(result.getContents() == null) {
- Log.e("Scan", "Cancelled scan");
- } else {
- Log.e("Scan", "Scanned");
-
- tv_qr_readTxt.setText(result.getContents());
-
-
-
-
-
- // Access a Cloud Firestore instance from your Activity
- FirebaseFirestore db = FirebaseFirestore.getInstance();
- db.collection("data")
- .get()
- .addOnCompleteListener(new OnCompleteListener() {
- private static final String TAG = "Firestore";
-
- @Override
- public void onComplete(@NonNull Task task) {
- if (task.isSuccessful()) {
- for (QueryDocumentSnapshot document : task.getResult()) {
-
- if (document.getId().equals(result.getContents())) {
- makeText(qrActivity.this, "Scan Successful!", Toast.LENGTH_LONG).show();
- move(result.getContents());
-
- } else {
- makeText(qrActivity.this, "Team not registered. Please try again.", Toast.LENGTH_LONG).show();
- }
-
- Log.d(TAG, document.getId() + " => " + document.getData());
- }
- } else {
- Log.d(TAG, "Error getting documents: ", task.getException());
- }
- }
- });
-
- makeText(this, "Scanned: " + result.getContents(), Toast.LENGTH_LONG).show();
- }
- } else {
- // This is important, otherwise the result will not be passed to the fragment
- super.onActivityResult(requestCode, resultCode, data);
- }
- }
-}
diff --git a/apps/android/main/res/drawable/qrcodeicon.png b/apps/android/main/res/drawable/qrcodeicon.png
deleted file mode 100644
index f232148c..00000000
Binary files a/apps/android/main/res/drawable/qrcodeicon.png and /dev/null differ
diff --git a/apps/android/main/res/layout/activity_alias.xml b/apps/android/main/res/layout/activity_alias.xml
deleted file mode 100644
index 710a5f8b..00000000
--- a/apps/android/main/res/layout/activity_alias.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/activity_main2.xml b/apps/android/main/res/layout/activity_main2.xml
deleted file mode 100644
index d71beebc..00000000
--- a/apps/android/main/res/layout/activity_main2.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/activity_matches_table_view.xml b/apps/android/main/res/layout/activity_matches_table_view.xml
deleted file mode 100644
index 94c631ca..00000000
--- a/apps/android/main/res/layout/activity_matches_table_view.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/activity_prematches.xml b/apps/android/main/res/layout/activity_prematches.xml
deleted file mode 100644
index 28bacde0..00000000
--- a/apps/android/main/res/layout/activity_prematches.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/activity_qr_full_screen.xml b/apps/android/main/res/layout/activity_qr_full_screen.xml
deleted file mode 100644
index 88fa81ec..00000000
--- a/apps/android/main/res/layout/activity_qr_full_screen.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/activity_scrolling.xml b/apps/android/main/res/layout/activity_scrolling.xml
deleted file mode 100644
index 045a9758..00000000
--- a/apps/android/main/res/layout/activity_scrolling.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/activityqr.xml b/apps/android/main/res/layout/activityqr.xml
deleted file mode 100644
index ff198b5c..00000000
--- a/apps/android/main/res/layout/activityqr.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/android/main/res/layout/content_main2.xml b/apps/android/main/res/layout/content_main2.xml
deleted file mode 100644
index be19b58d..00000000
--- a/apps/android/main/res/layout/content_main2.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/content_matches_table_view.xml b/apps/android/main/res/layout/content_matches_table_view.xml
deleted file mode 100644
index 2308f5e8..00000000
--- a/apps/android/main/res/layout/content_matches_table_view.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/content_prematches.xml b/apps/android/main/res/layout/content_prematches.xml
deleted file mode 100644
index 51c96f41..00000000
--- a/apps/android/main/res/layout/content_prematches.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/content_qr_full_screen.xml b/apps/android/main/res/layout/content_qr_full_screen.xml
deleted file mode 100644
index 011857bb..00000000
--- a/apps/android/main/res/layout/content_qr_full_screen.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/content_scrolling.xml b/apps/android/main/res/layout/content_scrolling.xml
deleted file mode 100644
index fa5bdde2..00000000
--- a/apps/android/main/res/layout/content_scrolling.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/dialog_new_category.xml b/apps/android/main/res/layout/dialog_new_category.xml
deleted file mode 100644
index 9bf5af3c..00000000
--- a/apps/android/main/res/layout/dialog_new_category.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/fragment_layout.xml b/apps/android/main/res/layout/fragment_layout.xml
deleted file mode 100644
index 794b9310..00000000
--- a/apps/android/main/res/layout/fragment_layout.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/list_item.xml b/apps/android/main/res/layout/list_item.xml
deleted file mode 100644
index fdeb0d63..00000000
--- a/apps/android/main/res/layout/list_item.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/android/main/res/layout/matches_fragment.xml b/apps/android/main/res/layout/matches_fragment.xml
deleted file mode 100644
index e3df2b70..00000000
--- a/apps/android/main/res/layout/matches_fragment.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/layout/popup_layout.xml b/apps/android/main/res/layout/popup_layout.xml
deleted file mode 100644
index ee82b0cb..00000000
--- a/apps/android/main/res/layout/popup_layout.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/menu/menu_scrolling.xml b/apps/android/main/res/menu/menu_scrolling.xml
deleted file mode 100644
index 60983641..00000000
--- a/apps/android/main/res/menu/menu_scrolling.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
diff --git a/apps/android/main/res/mipmap-anydpi-v26/ic_launcher.xml b/apps/android/main/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index bbd3e021..00000000
--- a/apps/android/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/apps/android/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
deleted file mode 100644
index bbd3e021..00000000
--- a/apps/android/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/android/main/res/mipmap-xhdpi/ic_launcher.png b/apps/android/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index e5ed4659..00000000
Binary files a/apps/android/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/android/main/res/mipmap-xhdpi/ic_launcher_round.png b/apps/android/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 14ed0af3..00000000
Binary files a/apps/android/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/apps/android/main/res/mipmap-xxhdpi/ic_launcher.png b/apps/android/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index b0907cac..00000000
Binary files a/apps/android/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/android/main/res/mipmap-xxhdpi/ic_launcher_round.png b/apps/android/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index d8ae0315..00000000
Binary files a/apps/android/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/apps/android/main/res/values/colors.xml b/apps/android/main/res/values/colors.xml
deleted file mode 100644
index 3367ded2..00000000
--- a/apps/android/main/res/values/colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- #008577
- #00574B
- #D81B60
-
- #ffffff
- #000000
-
-
diff --git a/apps/android/main/res/values/dimens.xml b/apps/android/main/res/values/dimens.xml
deleted file mode 100644
index da62b5f3..00000000
--- a/apps/android/main/res/values/dimens.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
- 180dp
- 16dp
- 16dp
-
diff --git a/apps/android/main/res/values/strings.xml b/apps/android/main/res/values/strings.xml
deleted file mode 100644
index 2f40f6f0..00000000
--- a/apps/android/main/res/values/strings.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-
- TitanScout
- ScrollingActivity
-
- "Material is the metaphor.\n\n"
-
- "A material metaphor is the unifying theory of a rationalized space and a system of motion."
- "The material is grounded in tactile reality, inspired by the study of paper and ink, yet "
- "technologically advanced and open to imagination and magic.\n"
- "Surfaces and edges of the material provide visual cues that are grounded in reality. The "
- "use of familiar tactile attributes helps users quickly understand affordances. Yet the "
- "flexibility of the material creates new affordances that supercede those in the physical "
- "world, without breaking the rules of physics.\n"
- "The fundamentals of light, surface, and movement are key to conveying how objects move, "
- "interact, and exist in space and in relation to each other. Realistic lighting shows "
- "seams, divides space, and indicates moving parts.\n\n"
-
- "Bold, graphic, intentional.\n\n"
-
- "The foundational elements of print based design typography, grids, space, scale, color, "
- "and use of imagery guide visual treatments. These elements do far more than please the "
- "eye. They create hierarchy, meaning, and focus. Deliberate color choices, edge to edge "
- "imagery, large scale typography, and intentional white space create a bold and graphic "
- "interface that immerse the user in the experience.\n"
- "An emphasis on user actions makes core functionality immediately apparent and provides "
- "waypoints for the user.\n\n"
-
- "Motion provides meaning.\n\n"
-
- "Motion respects and reinforces the user as the prime mover. Primary user actions are "
- "inflection points that initiate motion, transforming the whole design.\n"
- "All action takes place in a single environment. Objects are presented to the user without "
- "breaking the continuity of experience even as they transform and reorganize.\n"
- "Motion is meaningful and appropriate, serving to focus attention and maintain continuity. "
- "Feedback is subtle yet clear. Transitions are efficient yet coherent.\n\n"
-
- "3D world.\n\n"
-
- "The material environment is a 3D space, which means all objects have x, y, and z "
- "dimensions. The z-axis is perpendicularly aligned to the plane of the display, with the "
- "positive z-axis extending towards the viewer. Every sheet of material occupies a single "
- "position along the z-axis and has a standard 1dp thickness.\n"
- "On the web, the z-axis is used for layering and not for perspective. The 3D world is "
- "emulated by manipulating the y-axis.\n\n"
-
- "Light and shadow.\n\n"
-
- "Within the material environment, virtual lights illuminate the scene. Key lights create "
- "directional shadows, while ambient light creates soft shadows from all angles.\n"
- "Shadows in the material environment are cast by these two light sources. In Android "
- "development, shadows occur when light sources are blocked by sheets of material at "
- "various positions along the z-axis. On the web, shadows are depicted by manipulating the "
- "y-axis only. The following example shows the card with a height of 6dp.\n\n"
-
- "Resting elevation.\n\n"
-
- "All material objects, regardless of size, have a resting elevation, or default elevation "
- "that does not change. If an object changes elevation, it should return to its resting "
- "elevation as soon as possible.\n\n"
-
- "Component elevations.\n\n"
-
- "The resting elevation for a component type is consistent across apps (e.g., FAB elevation "
- "does not vary from 6dp in one app to 16dp in another app).\n"
- "Components may have different resting elevations across platforms, depending on the depth "
- "of the environment (e.g., TV has a greater depth than mobile or desktop).\n\n"
-
- "Responsive elevation and dynamic elevation offsets.\n\n"
-
- "Some component types have responsive elevation, meaning they change elevation in response "
- "to user input (e.g., normal, focused, and pressed) or system events. These elevation "
- "changes are consistently implemented using dynamic elevation offsets.\n"
- "Dynamic elevation offsets are the goal elevation that a component moves towards, relative "
- "to the component’s resting state. They ensure that elevation changes are consistent "
- "across actions and component types. For example, all components that lift on press have "
- "the same elevation change relative to their resting elevation.\n"
- "Once the input event is completed or cancelled, the component will return to its resting "
- "elevation.\n\n"
-
- "Avoiding elevation interference.\n\n"
-
- "Components with responsive elevations may encounter other components as they move between "
- "their resting elevations and dynamic elevation offsets. Because material cannot pass "
- "through other material, components avoid interfering with one another any number of ways, "
- "whether on a per component basis or using the entire app layout.\n"
- "On a component level, components can move or be removed before they cause interference. "
- "For example, a floating action button (FAB) can disappear or move off screen before a "
- "user picks up a card, or it can move if a snackbar appears.\n"
- "On the layout level, design your app layout to minimize opportunities for interference. "
- "For example, position the FAB to one side of stream of a cards so the FAB won’t interfere "
- "when a user tries to pick up one of cards.\n\n"
-
- Settings
- MatchesTableView
- qrFullScreen
- MainActivity2
- PrematchesActivity
-
diff --git a/apps/android/main/res/values/styles.xml b/apps/android/main/res/values/styles.xml
deleted file mode 100644
index 16dbab30..00000000
--- a/apps/android/main/res/values/styles.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-