diff --git a/Laboration3_new/.gitignore b/Laboration3_new/.gitignore deleted file mode 100644 index aa724b77071afcbd9bb398053e05adaf7ac9405a..0000000000000000000000000000000000000000 --- a/Laboration3_new/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/caches -/.idea/libraries -/.idea/modules.xml -/.idea/workspace.xml -/.idea/navEditor.xml -/.idea/assetWizardSettings.xml -.DS_Store -/build -/captures -.externalNativeBuild -.cxx -local.properties diff --git a/Laboration3_new/.idea/.gitignore b/Laboration3_new/.idea/.gitignore deleted file mode 100644 index 26d33521af10bcc7fd8cea344038eaaeb78d0ef5..0000000000000000000000000000000000000000 --- a/Laboration3_new/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/Laboration3_new/.idea/compiler.xml b/Laboration3_new/.idea/compiler.xml deleted file mode 100644 index b589d56e9f285d8cfdc6c270853a5d439021a278..0000000000000000000000000000000000000000 --- a/Laboration3_new/.idea/compiler.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="CompilerConfiguration"> - <bytecodeTargetLevel target="17" /> - </component> -</project> \ No newline at end of file diff --git a/Laboration3_new/.idea/gradle.xml b/Laboration3_new/.idea/gradle.xml deleted file mode 100644 index ae388c2a5050a3f9bc2d4f1b302cb72ee37d49b4..0000000000000000000000000000000000000000 --- a/Laboration3_new/.idea/gradle.xml +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="GradleMigrationSettings" migrationVersion="1" /> - <component name="GradleSettings"> - <option name="linkedExternalProjectsSettings"> - <GradleProjectSettings> - <option name="testRunner" value="GRADLE" /> - <option name="distributionType" value="DEFAULT_WRAPPED" /> - <option name="externalProjectPath" value="$PROJECT_DIR$" /> - <option name="gradleJvm" value="jbr-17" /> - <option name="modules"> - <set> - <option value="$PROJECT_DIR$" /> - <option value="$PROJECT_DIR$/app" /> - </set> - </option> - </GradleProjectSettings> - </option> - </component> -</project> \ No newline at end of file diff --git a/Laboration3_new/.idea/misc.xml b/Laboration3_new/.idea/misc.xml deleted file mode 100644 index 8978d23db569daa721cb26dde7923f4c673d1fc9..0000000000000000000000000000000000000000 --- a/Laboration3_new/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ -<project version="4"> - <component name="ExternalStorageConfigurationManager" enabled="true" /> - <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK"> - <output url="file://$PROJECT_DIR$/build/classes" /> - </component> - <component name="ProjectType"> - <option name="id" value="Android" /> - </component> -</project> \ No newline at end of file diff --git a/Laboration3_new/app/.gitignore b/Laboration3_new/app/.gitignore deleted file mode 100644 index 42afabfd2abebf31384ca7797186a27a4b7dbee8..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/Laboration3_new/app/build.gradle.kts b/Laboration3_new/app/build.gradle.kts deleted file mode 100644 index 1621da1b721730bc476323fd64a5d2267330c4ac..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/build.gradle.kts +++ /dev/null @@ -1,39 +0,0 @@ -plugins { - id("com.android.application") -} - -android { - namespace = "com.example.laboration3_new" - compileSdk = 34 - - defaultConfig { - applicationId = "com.example.laboration3_new" - minSdk = 34 - targetSdk = 34 - versionCode = 1 - versionName = "1.0" - - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" - } - - buildTypes { - release { - isMinifyEnabled = false - proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") - } - } - compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 - } -} - -dependencies { - implementation("com.google.code.gson:gson:2.8.8") // adding dependency for gson. - implementation("androidx.appcompat:appcompat:1.6.1") - implementation("com.google.android.material:material:1.10.0") - implementation("androidx.constraintlayout:constraintlayout:2.1.4") - testImplementation("junit:junit:4.13.2") - androidTestImplementation("androidx.test.ext:junit:1.1.5") - androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") -} \ No newline at end of file diff --git a/Laboration3_new/app/proguard-rules.pro b/Laboration3_new/app/proguard-rules.pro deleted file mode 100644 index 481bb434814107eb79d7a30b676d344b0df2f8ce..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/Laboration3_new/app/src/androidTest/java/com/example/laboration3_new/ExampleInstrumentedTest.java b/Laboration3_new/app/src/androidTest/java/com/example/laboration3_new/ExampleInstrumentedTest.java deleted file mode 100644 index b64acec8a1a12b42a653ae3bebb63aef2728bee1..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/androidTest/java/com/example/laboration3_new/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.example.laboration3_new; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("com.example.laboration3_new", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/Laboration3_new/app/src/main/AndroidManifest.xml b/Laboration3_new/app/src/main/AndroidManifest.xml deleted file mode 100644 index d90407244ab39ad94157a2f3668b4037913c3c29..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools"> - <uses-permission android:name="android.permission.INTERNET"></uses-permission> - <application - android:allowBackup="true" - android:dataExtractionRules="@xml/data_extraction_rules" - android:fullBackupContent="@xml/backup_rules" - android:icon="@mipmap/ic_launcher" - android:label="@string/app_name" - android:roundIcon="@mipmap/ic_launcher_round" - android:supportsRtl="true" - android:theme="@style/Theme.Laboration3_new" - tools:targetApi="31"> - <activity - android:name=".MainActivity" - android:exported="true"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> - -</manifest> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/java/com/example/laboration3_new/Fetch.java b/Laboration3_new/app/src/main/java/com/example/laboration3_new/Fetch.java deleted file mode 100644 index 0aa877980af8559dc4adc8abd74ff19cd958eadc..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/java/com/example/laboration3_new/Fetch.java +++ /dev/null @@ -1,55 +0,0 @@ -package com.example.laboration3_new; -import android.util.Log; -import com.google.gson.Gson; -import java.io.BufferedInputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.net.HttpURLConnection; -import java.net.URL; -import java.util.ArrayList; - - -/** - * fetch data of a search suggestion, keeping track of the searches with int id. - */ -public class Fetch { - private int id; - private String searchText; - private int numberOfSuggestions; - private ArrayList<String> data; - public Fetch(int id, String searchText, int numberOfSuggestions){ - this.id = id; - this.searchText = searchText; - this.numberOfSuggestions = numberOfSuggestions; - this.data = fetch(searchText); - } - public int getId() { - return id; - } - public ArrayList<String> getSearchSuggestions(){ - return this.data; - } - private ArrayList<String> fetch(String searchText){ - ArrayList<String> data = new ArrayList<>(); - try { - URL url = new URL("https://andla.pythonanywhere.com/getnames/" + id + "/" + searchText); - HttpURLConnection connection = (HttpURLConnection) url.openConnection(); - if(connection.getResponseCode() == HttpURLConnection.HTTP_OK){ - InputStream responseStream = new BufferedInputStream(connection.getInputStream()); - InputStreamReader reader = new InputStreamReader(responseStream); - Gson gson = new Gson(); - Item item = gson.fromJson(reader, Item.class); - int limit = Math.min(item.getResult().size(), numberOfSuggestions); - data.addAll(item.getResult().subList(0, limit)); - connection.disconnect(); - }else{ - Log.d("Bad Connection", String.valueOf(connection.getResponseCode())); - } - }catch(IOException e){ - e.printStackTrace(); - Log.d("Exception", e.getMessage()); - } - return data; - } -} \ No newline at end of file diff --git a/Laboration3_new/app/src/main/java/com/example/laboration3_new/InteractiveSearcher.java b/Laboration3_new/app/src/main/java/com/example/laboration3_new/InteractiveSearcher.java deleted file mode 100644 index 64c2e270fe5870f02ae351114d840c81cc1f9ed8..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/java/com/example/laboration3_new/InteractiveSearcher.java +++ /dev/null @@ -1,118 +0,0 @@ -package com.example.laboration3_new; -import android.content.Context; -import android.text.Editable; -import android.text.TextWatcher; -import android.util.AttributeSet; -import android.view.View; -import android.view.WindowManager; -import android.widget.AdapterView; -import android.widget.ListPopupWindow; -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; -import java.util.ArrayList; -public class InteractiveSearcher extends androidx.appcompat.widget.AppCompatEditText { - private static final int DEFAULT_NUMBER_OF_SUGGESTIONS=10; - private int id=-1; - private int numberOfSuggestions=-1; - private ArrayList<String> mySuggestions; - private MyAdapter myAdapter; - private Fetch fetch; - private ListPopupWindow listPopupWindow; - private Context context; - public InteractiveSearcher(@NonNull Context context) { - super(context); - this.context = context; - init(); - } - public InteractiveSearcher(@NonNull Context context, @Nullable AttributeSet attrs) { - super(context, attrs); - this.context = context; - init(); - } - public InteractiveSearcher(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) { - super(context, attrs, defStyleAttr); - this.context = context; - init(); - } - public void setNumberOfSuggestions(int n){ - this.numberOfSuggestions = n; - } - - /** - * initialize the adapter, listpopupwindow and the data structure for all suggestions, - * Adding a text watcher and a click-listener. - */ - private void init() { - if(numberOfSuggestions==-1){numberOfSuggestions=DEFAULT_NUMBER_OF_SUGGESTIONS;} - mySuggestions = new ArrayList<>(); - myAdapter = new MyAdapter(this.context, mySuggestions); - listPopupWindow = new ListPopupWindow(this.context); - listPopupWindow.setAdapter(myAdapter); - listPopupWindow.setAnchorView(this); - listPopupWindow.setHeight(WindowManager.LayoutParams.WRAP_CONTENT); - addTextChangedListener(getTextWatcher()); - listPopupWindow.setOnItemClickListener(new AdapterView.OnItemClickListener() { - @Override - public void onItemClick(AdapterView<?> parent, View view, int position, long id) { - Row row = (Row) view; // A Row is a view --> we can cast Row on each view. - setText(row.getSuggestion()); // using the getter from Row. - } - }); - } - private TextWatcher getTextWatcher(){ - return new TextWatcher() { - @Override - public void beforeTextChanged(CharSequence s, int start, int count, int after) { } - @Override - public void onTextChanged(CharSequence s, int start, int before, int count) { - final String input = s.toString().trim(); - // open a thread for a network connection/fetching data. - Thread t = new Thread(new Runnable() { - @Override - public void run() { - id++; - fetch = new Fetch(id, input, numberOfSuggestions); // new fetch - mySuggestions = fetch.getSearchSuggestions(); // set our arraylist with suggestions. - post(new Runnable() { - @Override - public void run() { - if(mySuggestions.isEmpty()){ // if we get no search suggestions. - clearWindow(); - return; - } - /** - Check if the current id is the same as fetch id. We are doing this - to ensure that we get the correct dataset, as we don't know how - fast each fetch is or how fast the user is typing. - */ - if (id == fetch.getId()) { - - /** - Setting data will start creating Rows, and the Rows will be - drawn with help of onDraw in the Row class. - */ - myAdapter.setData(mySuggestions); // set available data. - myAdapter.notifyDataSetChanged(); // notify a change. - listPopupWindow.setWidth(myAdapter.getWidestTextWidth()); // set the width. - listPopupWindow.show(); // show the listpopupwindow-view. - } - } - }); - } - }); - t.start(); - } - @Override - public void afterTextChanged(Editable s) { } - }; - } - - /** - * Clearing out the listpopupwindow. - */ - private void clearWindow(){ - myAdapter.clearData(); - myAdapter.notifyDataSetChanged(); - listPopupWindow.dismiss(); - } -} \ No newline at end of file diff --git a/Laboration3_new/app/src/main/java/com/example/laboration3_new/Item.java b/Laboration3_new/app/src/main/java/com/example/laboration3_new/Item.java deleted file mode 100644 index ee789317ba11bff78926cbf27d5657929d68a951..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/java/com/example/laboration3_new/Item.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.example.laboration3_new; -import java.util.ArrayList; - -/** - * Representing the structure of each JSON object. Used with GSON in Fetcher.java. - */ -public class Item { - private String id; - private ArrayList<String> result; - public String getId(){ - return id; - } - public ArrayList<String> getResult() { - return result; - } -} diff --git a/Laboration3_new/app/src/main/java/com/example/laboration3_new/MainActivity.java b/Laboration3_new/app/src/main/java/com/example/laboration3_new/MainActivity.java deleted file mode 100644 index 5645d97d66fc5c4dc124899580d709df67df8609..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/java/com/example/laboration3_new/MainActivity.java +++ /dev/null @@ -1,13 +0,0 @@ - package com.example.laboration3_new; - import androidx.appcompat.app.AppCompatActivity; - import android.os.Bundle; - public class MainActivity extends AppCompatActivity { - private InteractiveSearcher interactiveSearcher; - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - interactiveSearcher = findViewById(R.id.interactiveSearcher); - interactiveSearcher.setNumberOfSuggestions(5); - } - } \ No newline at end of file diff --git a/Laboration3_new/app/src/main/java/com/example/laboration3_new/MyAdapter.java b/Laboration3_new/app/src/main/java/com/example/laboration3_new/MyAdapter.java deleted file mode 100644 index 53c659d2ba4b9447a8dec94b3e1426fffb968a88..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/java/com/example/laboration3_new/MyAdapter.java +++ /dev/null @@ -1,86 +0,0 @@ -package com.example.laboration3_new; -import android.content.Context; -import android.view.View; -import android.view.ViewGroup; -import android.widget.BaseAdapter; -import java.util.ArrayList; - -/** - * Adapter for displaying the listpopupwindow. GetView and Row will work hand in hand to - * draw the whole listpopupwindow. - */ - -public class MyAdapter extends BaseAdapter { - private Context context; - private ArrayList<String> data; // raw data - public MyAdapter(Context context, ArrayList<String> data) { - this.context = context; - this.data = data; - } - @Override - public int getCount() { - return data.size(); - } - @Override - public Object getItem(int position) { - return data.get(position); - } - @Override - public long getItemId(int position) { - return position; - } - - /** - * We will create a new Row for each position and return that view, onMeasure/onDraw in Row - * will then draw that row. - * - * @param position The position of the item within the adapter's data set of the item whose view - * we want. - * @param convertView The old view to reuse, if possible. Note: You should check that this view - * is non-null and of an appropriate type before using. If it is not possible to convert - * this view to display the correct data, this method can create a new view. - * Heterogeneous lists can specify their number of view types, so that this View is - * always of the right type (see {@link #getViewTypeCount()} and - * {@link #getItemViewType(int)}). - * @param parent The parent that this view will eventually be attached to - * @return View - */ - @Override - public View getView(int position, View convertView, ViewGroup parent) { - View v = new Row(context, data.get(position)); - return v; - } - - /** - * Setting raw data. - * @param data - */ - public void setData(ArrayList<String> data) { - this.data = data; - } - - /** - * Empty out the dataset. - */ - public void clearData(){ - this.data.clear(); - } - - /** - * Check which row is the widest. - * @return maxWidth - */ - public int getWidestTextWidth(){ - ArrayList<Row> rows = new ArrayList<>(); - for(String suggestion : data){ - Row row = new Row(context, suggestion); - rows.add(row); - } - int maxWidth = 0; - for (Row row : rows) { - float textWidth = row.getTextWidth(); - maxWidth = (int) Math.max(maxWidth, textWidth); - } - return maxWidth; - } -} \ No newline at end of file diff --git a/Laboration3_new/app/src/main/java/com/example/laboration3_new/Row.java b/Laboration3_new/app/src/main/java/com/example/laboration3_new/Row.java deleted file mode 100644 index a8690aa9b0a622b2366b6d041ff2838e1b35c06e..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/java/com/example/laboration3_new/Row.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.example.laboration3_new; -import android.content.Context; -import android.graphics.Canvas; -import android.graphics.Paint; -import android.util.AttributeSet; -import android.view.View; -import androidx.annotation.Nullable; - -/** - * A class representing a single row in the listpopupwindow. - * Main function of this class is to draw that row. With help of onDraw/onMeasure. - */ - - -public class Row extends View { - private String suggestion; - private Paint paint; - private int textWidth; - public Row(Context context, String suggestion) { - super(context); - paint = new Paint(); - paint.setTextSize(40); - this.suggestion = suggestion; // single suggestion. - this.textWidth = (int) paint.measureText(suggestion); // later used in adapter for sizing - // the listpopupwindow. - } - public float getTextWidth(){ - return this.textWidth; - } - public Row(Context context, @Nullable AttributeSet attrs) { - super(context, attrs); - } - public Row(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { - super(context, attrs, defStyleAttr); - } - public Row(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) { - super(context, attrs, defStyleAttr, defStyleRes); - } - @Override - protected void onDraw(Canvas canvas){ - super.onDraw(canvas); - canvas.drawText(suggestion, 0, 50, paint); - } - @Override - protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { - int width = View.MeasureSpec.getSize(widthMeasureSpec); - setMeasuredDimension(width, 100); - } - public String getSuggestion(){ - return this.suggestion.toString(); - } -} \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/drawable/ic_launcher_background.xml b/Laboration3_new/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 07d5da9cbf141911847041df5d7b87f0dd5ef9d4..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path - android:fillColor="#3DDC84" - android:pathData="M0,0h108v108h-108z" /> - <path - android:fillColor="#00000000" - android:pathData="M9,0L9,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,0L19,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,0L29,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,0L39,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,0L49,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,0L59,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,0L69,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,0L79,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M89,0L89,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M99,0L99,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,9L108,9" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,19L108,19" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,29L108,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,39L108,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,49L108,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,59L108,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,69L108,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,79L108,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,89L108,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,99L108,99" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,29L89,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,39L89,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,49L89,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,59L89,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,69L89,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,79L89,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,19L29,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,19L39,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,19L49,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,19L59,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,19L69,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,19L79,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> -</vector> diff --git a/Laboration3_new/app/src/main/res/drawable/ic_launcher_foreground.xml b/Laboration3_new/app/src/main/res/drawable/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d11462a4b96669193de13a711a3a36220a0..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/drawable/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ -<vector xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:aapt="http://schemas.android.com/aapt" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> - <aapt:attr name="android:fillColor"> - <gradient - android:endX="85.84757" - android:endY="92.4963" - android:startX="42.9492" - android:startY="49.59793" - android:type="linear"> - <item - android:color="#44000000" - android:offset="0.0" /> - <item - android:color="#00000000" - android:offset="1.0" /> - </gradient> - </aapt:attr> - </path> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> -</vector> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/layout/activity_main.xml b/Laboration3_new/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index 82f26c85a5392c6b9cc93236a8c0e94378ad8588..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout 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=".MainActivity" - android:orientation="horizontal"> - - <com.example.laboration3_new.InteractiveSearcher - android:id="@+id/interactiveSearcher" - android:layout_width="match_parent" - android:layout_height="wrap_content" - /> -</LinearLayout> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/Laboration3_new/app/src/main/res/mipmap-anydpi/ic_launcher.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/mipmap-anydpi/ic_launcher.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/Laboration3_new/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/Laboration3_new/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index c209e78ecd372343283f4157dcfd918ec5165bb3..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/Laboration3_new/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp deleted file mode 100644 index b2dfe3d1ba5cf3ee31b3ecc1ced89044a1f3b7a9..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/Laboration3_new/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 4f0f1d64e58ba64d180ce43ee13bf9a17835fbca..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/Laboration3_new/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp deleted file mode 100644 index 62b611da081676d42f6c3f78a2c91e7bcedddedb..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/Laboration3_new/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index 948a3070fe34c611c42c0d3ad3013a0dce358be0..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/Laboration3_new/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp deleted file mode 100644 index 1b9a6956b3acdc11f40ce2bb3f6efbd845cc243f..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/Laboration3_new/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index 28d4b77f9f036a47549d47db79c16788749dca10..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/Laboration3_new/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9287f5083623b375139afb391af71cc533a7dd37..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/Laboration3_new/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index aa7d6427e6fa1074b79ccd52ef67ac15c5637e85..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/Laboration3_new/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9126ae37cbc3587421d6889eadd1d91fbf1994d4..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/Laboration3_new/app/src/main/res/values-night/themes.xml b/Laboration3_new/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 6ea361cbde637610e0691c739aae3f7e243189f8..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,7 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Laboration3_new" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your dark theme here. --> - <!-- <item name="colorPrimary">@color/my_dark_primary</item> --> - </style> -</resources> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/values/colors.xml b/Laboration3_new/app/src/main/res/values/colors.xml deleted file mode 100644 index c8524cd961d27b6695e755c6ef2d4d58cf38431e..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<resources> - <color name="black">#FF000000</color> - <color name="white">#FFFFFFFF</color> -</resources> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/values/strings.xml b/Laboration3_new/app/src/main/res/values/strings.xml deleted file mode 100644 index c3dac4a8c1ae07f560e72092666d9bddddafed92..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ -<resources> - <string name="app_name">Laboration3_new</string> -</resources> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/values/themes.xml b/Laboration3_new/app/src/main/res/values/themes.xml deleted file mode 100644 index b7935d428bb3ec154f23e4ae43966af7f317182a..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,9 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Laboration3_new" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your light theme here. --> - <!-- <item name="colorPrimary">@color/my_light_primary</item> --> - </style> - - <style name="Theme.Laboration3_new" parent="Base.Theme.Laboration3_new" /> -</resources> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/xml/backup_rules.xml b/Laboration3_new/app/src/main/res/xml/backup_rules.xml deleted file mode 100644 index fa0f996d2c2a6bdd11f5371de4268c8389d6c720..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/xml/backup_rules.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample backup rules file; uncomment and customize as necessary. - See https://developer.android.com/guide/topics/data/autobackup - for details. - Note: This file is ignored for devices older that API 31 - See https://developer.android.com/about/versions/12/backup-restore ---> -<full-backup-content> - <!-- - <include domain="sharedpref" path="."/> - <exclude domain="sharedpref" path="device.xml"/> ---> -</full-backup-content> \ No newline at end of file diff --git a/Laboration3_new/app/src/main/res/xml/data_extraction_rules.xml b/Laboration3_new/app/src/main/res/xml/data_extraction_rules.xml deleted file mode 100644 index 9ee9997b0b4726e57c27b2f7b21462b604ff8a88..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/main/res/xml/data_extraction_rules.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample data extraction rules file; uncomment and customize as necessary. - See https://developer.android.com/about/versions/12/backup-restore#xml-changes - for details. ---> -<data-extraction-rules> - <cloud-backup> - <!-- TODO: Use <include> and <exclude> to control what is backed up. - <include .../> - <exclude .../> - --> - </cloud-backup> - <!-- - <device-transfer> - <include .../> - <exclude .../> - </device-transfer> - --> -</data-extraction-rules> \ No newline at end of file diff --git a/Laboration3_new/app/src/test/java/com/example/laboration3_new/ExampleUnitTest.java b/Laboration3_new/app/src/test/java/com/example/laboration3_new/ExampleUnitTest.java deleted file mode 100644 index 9fa055041d777f6cf13a541c2c725555a09fed4e..0000000000000000000000000000000000000000 --- a/Laboration3_new/app/src/test/java/com/example/laboration3_new/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.example.laboration3_new; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file diff --git a/Laboration3_new/build.gradle.kts b/Laboration3_new/build.gradle.kts deleted file mode 100644 index c21801c71b6929d946defe659f1774baf2d1fae3..0000000000000000000000000000000000000000 --- a/Laboration3_new/build.gradle.kts +++ /dev/null @@ -1,4 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -plugins { - id("com.android.application") version "8.1.2" apply false -} \ No newline at end of file diff --git a/Laboration3_new/gradle.properties b/Laboration3_new/gradle.properties deleted file mode 100644 index 3e927b11efbfe301c31c0a8e4d7e4acb829d631a..0000000000000000000000000000000000000000 --- a/Laboration3_new/gradle.properties +++ /dev/null @@ -1,21 +0,0 @@ -# Project-wide Gradle settings. -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Enables namespacing of each library's R class so that its R class includes only the -# resources declared in the library itself and none from the library's dependencies, -# thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true \ No newline at end of file diff --git a/Laboration3_new/gradle/wrapper/gradle-wrapper.jar b/Laboration3_new/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c023ec8b20f512888fe07c5bd3ff77bb8f..0000000000000000000000000000000000000000 Binary files a/Laboration3_new/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/Laboration3_new/gradle/wrapper/gradle-wrapper.properties b/Laboration3_new/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index c369408377a5e10f43f1b81d452719af3dc7bfb0..0000000000000000000000000000000000000000 --- a/Laboration3_new/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Thu Nov 09 12:37:15 CET 2023 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Laboration3_new/gradlew b/Laboration3_new/gradlew deleted file mode 100644 index 4f906e0c811fc9e230eb44819f509cd0627f2600..0000000000000000000000000000000000000000 --- a/Laboration3_new/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" diff --git a/Laboration3_new/gradlew.bat b/Laboration3_new/gradlew.bat deleted file mode 100644 index 107acd32c4e687021ef32db511e8a206129b88ec..0000000000000000000000000000000000000000 --- a/Laboration3_new/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/Laboration3_new/settings.gradle.kts b/Laboration3_new/settings.gradle.kts deleted file mode 100644 index 72610ebb1a74129cb76eeaf51cd866905220458a..0000000000000000000000000000000000000000 --- a/Laboration3_new/settings.gradle.kts +++ /dev/null @@ -1,18 +0,0 @@ -pluginManagement { - repositories { - google() - mavenCentral() - gradlePluginPortal() - } -} -dependencyResolutionManagement { - repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) - repositories { - google() - mavenCentral() - } -} - -rootProject.name = "Laboration3_new" -include(":app") - \ No newline at end of file diff --git a/lab0/Labb13/.gitignore b/lab0/Labb13/.gitignore deleted file mode 100644 index aa724b77071afcbd9bb398053e05adaf7ac9405a..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/caches -/.idea/libraries -/.idea/modules.xml -/.idea/workspace.xml -/.idea/navEditor.xml -/.idea/assetWizardSettings.xml -.DS_Store -/build -/captures -.externalNativeBuild -.cxx -local.properties diff --git a/lab0/Labb13/.idea/.gitignore b/lab0/Labb13/.idea/.gitignore deleted file mode 100644 index 26d33521af10bcc7fd8cea344038eaaeb78d0ef5..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/lab0/Labb13/.idea/.name b/lab0/Labb13/.idea/.name deleted file mode 100644 index 5bd673769c6f117291188cbb895a14ae1337abf2..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -Labb1.3 \ No newline at end of file diff --git a/lab0/Labb13/.idea/compiler.xml b/lab0/Labb13/.idea/compiler.xml deleted file mode 100644 index b589d56e9f285d8cfdc6c270853a5d439021a278..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.idea/compiler.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="CompilerConfiguration"> - <bytecodeTargetLevel target="17" /> - </component> -</project> \ No newline at end of file diff --git a/lab0/Labb13/.idea/gradle.xml b/lab0/Labb13/.idea/gradle.xml deleted file mode 100644 index ae388c2a5050a3f9bc2d4f1b302cb72ee37d49b4..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.idea/gradle.xml +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="GradleMigrationSettings" migrationVersion="1" /> - <component name="GradleSettings"> - <option name="linkedExternalProjectsSettings"> - <GradleProjectSettings> - <option name="testRunner" value="GRADLE" /> - <option name="distributionType" value="DEFAULT_WRAPPED" /> - <option name="externalProjectPath" value="$PROJECT_DIR$" /> - <option name="gradleJvm" value="jbr-17" /> - <option name="modules"> - <set> - <option value="$PROJECT_DIR$" /> - <option value="$PROJECT_DIR$/app" /> - </set> - </option> - </GradleProjectSettings> - </option> - </component> -</project> \ No newline at end of file diff --git a/lab0/Labb13/.idea/misc.xml b/lab0/Labb13/.idea/misc.xml deleted file mode 100644 index 8978d23db569daa721cb26dde7923f4c673d1fc9..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ -<project version="4"> - <component name="ExternalStorageConfigurationManager" enabled="true" /> - <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK"> - <output url="file://$PROJECT_DIR$/build/classes" /> - </component> - <component name="ProjectType"> - <option name="id" value="Android" /> - </component> -</project> \ No newline at end of file diff --git a/lab0/Labb13/.idea/vcs.xml b/lab0/Labb13/.idea/vcs.xml deleted file mode 100644 index 6c0b8635858dc7ad44b93df54b762707ce49eefc..0000000000000000000000000000000000000000 --- a/lab0/Labb13/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="VcsDirectoryMappings"> - <mapping directory="$PROJECT_DIR$/.." vcs="Git" /> - </component> -</project> \ No newline at end of file diff --git a/lab0/Labb13/app/.gitignore b/lab0/Labb13/app/.gitignore deleted file mode 100644 index 42afabfd2abebf31384ca7797186a27a4b7dbee8..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/lab0/Labb13/app/build.gradle.kts b/lab0/Labb13/app/build.gradle.kts deleted file mode 100644 index df1d9d1f528d4cd46c1f7d086aa20332298baee3..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/build.gradle.kts +++ /dev/null @@ -1,42 +0,0 @@ -plugins { - id("com.android.application") -} - -android { - namespace = "com.example.labb13" - compileSdk = 34 - - defaultConfig { - applicationId = "com.example.labb13" - minSdk = 24 - targetSdk = 34 - versionCode = 1 - versionName = "1.0" - - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" - } - - buildTypes { - release { - isMinifyEnabled = false - proguardFiles( - getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" - ) - } - } - compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 - } -} - -dependencies { - - implementation("androidx.appcompat:appcompat:1.6.1") - implementation("com.google.android.material:material:1.10.0") - implementation("androidx.constraintlayout:constraintlayout:2.1.4") - testImplementation("junit:junit:4.13.2") - androidTestImplementation("androidx.test.ext:junit:1.1.5") - androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") -} \ No newline at end of file diff --git a/lab0/Labb13/app/proguard-rules.pro b/lab0/Labb13/app/proguard-rules.pro deleted file mode 100644 index 481bb434814107eb79d7a30b676d344b0df2f8ce..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/lab0/Labb13/app/src/androidTest/java/com/example/labb13/ExampleInstrumentedTest.java b/lab0/Labb13/app/src/androidTest/java/com/example/labb13/ExampleInstrumentedTest.java deleted file mode 100644 index 730f5da8d13a1c568e152540aac96a3adc52a07b..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/androidTest/java/com/example/labb13/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.example.labb13; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("com.example.labb13", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/AndroidManifest.xml b/lab0/Labb13/app/src/main/AndroidManifest.xml deleted file mode 100644 index 238b741ed0ebfeb9356d42cd5a3001a0f1cc6a3c..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools"> - - <application - android:allowBackup="true" - android:dataExtractionRules="@xml/data_extraction_rules" - android:fullBackupContent="@xml/backup_rules" - android:icon="@mipmap/ic_launcher" - android:label="@string/app_name" - android:roundIcon="@mipmap/ic_launcher_round" - android:supportsRtl="true" - android:theme="@style/Theme.Labb13" - tools:targetApi="31"> - <activity - android:name=".MainActivity" - android:exported="true"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> - -</manifest> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/java/com/example/labb13/MainActivity.java b/lab0/Labb13/app/src/main/java/com/example/labb13/MainActivity.java deleted file mode 100644 index 08397ee1900d5d8019339f7b6528e7e11b2628dc..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/java/com/example/labb13/MainActivity.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.example.labb13; - -import androidx.appcompat.app.AppCompatActivity; - -import android.os.Bundle; - -public class MainActivity extends AppCompatActivity { - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - } -} \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/drawable/download.png b/lab0/Labb13/app/src/main/res/drawable/download.png deleted file mode 100644 index 3aa34bcde0a7ad281024431d54fd9c0e96db4644..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/drawable/download.png and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/drawable/ic_launcher_background.xml b/lab0/Labb13/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 07d5da9cbf141911847041df5d7b87f0dd5ef9d4..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path - android:fillColor="#3DDC84" - android:pathData="M0,0h108v108h-108z" /> - <path - android:fillColor="#00000000" - android:pathData="M9,0L9,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,0L19,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,0L29,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,0L39,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,0L49,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,0L59,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,0L69,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,0L79,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M89,0L89,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M99,0L99,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,9L108,9" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,19L108,19" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,29L108,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,39L108,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,49L108,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,59L108,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,69L108,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,79L108,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,89L108,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,99L108,99" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,29L89,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,39L89,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,49L89,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,59L89,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,69L89,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,79L89,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,19L29,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,19L39,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,19L49,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,19L59,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,19L69,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,19L79,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> -</vector> diff --git a/lab0/Labb13/app/src/main/res/drawable/ic_launcher_foreground.xml b/lab0/Labb13/app/src/main/res/drawable/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d11462a4b96669193de13a711a3a36220a0..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/drawable/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ -<vector xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:aapt="http://schemas.android.com/aapt" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> - <aapt:attr name="android:fillColor"> - <gradient - android:endX="85.84757" - android:endY="92.4963" - android:startX="42.9492" - android:startY="49.59793" - android:type="linear"> - <item - android:color="#44000000" - android:offset="0.0" /> - <item - android:color="#00000000" - android:offset="1.0" /> - </gradient> - </aapt:attr> - </path> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> -</vector> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/layout/activity_main.xml b/lab0/Labb13/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index 2badd4d08a1a70800d8e2bee84115ef4ae1926bd..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,162 +0,0 @@ -<?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=".MainActivity"> - - <TextView - android:id="@+id/textView" - android:layout_width="417dp" - android:layout_height="61dp" - android:layout_marginStart="1dp" - android:layout_marginTop="2dp" - android:layout_marginEnd="1dp" - android:background="#628AAA" - android:gravity="left|center" - android:text="Laboration 1.3" - android:textColor="@color/black" - android:textSize="25dp" - android:textStyle="bold" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintHorizontal_bias="0.466" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent" /> - - <CheckBox - android:id="@+id/checkBox2" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginTop="32dp" - android:text="Mycket Bra" - app:layout_constraintEnd_toEndOf="@+id/checkBox5" - app:layout_constraintHorizontal_bias="0.514" - app:layout_constraintStart_toEndOf="@+id/checkBox5" - app:layout_constraintTop_toBottomOf="@+id/textView" /> - - <CheckBox - android:id="@+id/checkBox4" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="Ja" - app:layout_constraintBaseline_toBaselineOf="@+id/checkBox5" - app:layout_constraintStart_toStartOf="@+id/checkBox" /> - - <CheckBox - android:id="@+id/checkBox" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginStart="20dp" - android:text="Bra" - app:layout_constraintBaseline_toBaselineOf="@+id/checkBox2" - app:layout_constraintStart_toStartOf="@+id/textView" /> - - <CheckBox - android:id="@+id/checkBox5" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginStart="4dp" - android:layout_marginTop="36dp" - android:text="Nej" - app:layout_constraintStart_toEndOf="@+id/checkBox4" - app:layout_constraintTop_toBottomOf="@+id/checkBox" /> - - <CheckBox - android:id="@+id/checkBox3" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="Jättebra" - app:layout_constraintBaseline_toBaselineOf="@+id/checkBox2" - app:layout_constraintStart_toEndOf="@+id/checkBox2" /> - - <ImageView - android:id="@+id/imageView" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginStart="16dp" - app:layout_constraintStart_toStartOf="@+id/checkBox5" - app:layout_constraintTop_toBottomOf="@+id/checkBox5" - app:srcCompat="@drawable/download" /> - - <CheckBox - android:id="@+id/checkBox6" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginStart="16dp" - android:text="Ja" - app:layout_constraintBaseline_toBaselineOf="@+id/checkBox7" - app:layout_constraintStart_toStartOf="parent" /> - - <CheckBox - android:id="@+id/checkBox7" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginStart="5dp" - android:layout_marginTop="36dp" - android:text="Nej" - app:layout_constraintStart_toEndOf="@+id/checkBox6" - app:layout_constraintTop_toBottomOf="@+id/imageView" /> - - <TextView - android:id="@+id/textView3" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginTop="258dp" - android:text="Är detta LiUs logotyp" - android:textColor="#706868" - android:textSize="15dp" - - app:layout_constraintBottom_toTopOf="@+id/checkBox7" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="@+id/imageView" - app:layout_constraintVertical_bias="1.0" /> - - <TextView - android:id="@+id/textView5" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginTop="18dp" - android:text="Läser du på LiTH" - android:textColor="#706868" - android:textSize="15dp" - - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintHorizontal_bias="0.5" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toBottomOf="@+id/checkBox2" /> - - <TextView - android:id="@+id/textView6" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="Hur trivs du på LiU" - android:textColor="#706868" - android:textSize="15dp" - app:layout_constraintBottom_toTopOf="@+id/checkBox3" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintHorizontal_bias="0.5" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toBottomOf="@+id/textView" - app:layout_constraintVertical_bias="0.0" /> - - <Button - android:id="@+id/button" - android:layout_width="478dp" - android:layout_height="73dp" - android:layout_marginBottom="96dp" - android:backgroundTint="#B3B1B1" - android:gravity="center" - android:text="SKICKA IN" - android:textColor="#494545" - android:textSize="20dp" - android:textStyle="bold" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintHorizontal_bias="0.509" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toBottomOf="@+id/checkBox7" - app:layout_constraintVertical_bias="0.366" /> - -</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/lab0/Labb13/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/lab0/Labb13/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/lab0/Labb13/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index c209e78ecd372343283f4157dcfd918ec5165bb3..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/lab0/Labb13/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp deleted file mode 100644 index b2dfe3d1ba5cf3ee31b3ecc1ced89044a1f3b7a9..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/lab0/Labb13/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 4f0f1d64e58ba64d180ce43ee13bf9a17835fbca..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/lab0/Labb13/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp deleted file mode 100644 index 62b611da081676d42f6c3f78a2c91e7bcedddedb..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/lab0/Labb13/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index 948a3070fe34c611c42c0d3ad3013a0dce358be0..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/lab0/Labb13/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp deleted file mode 100644 index 1b9a6956b3acdc11f40ce2bb3f6efbd845cc243f..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/lab0/Labb13/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index 28d4b77f9f036a47549d47db79c16788749dca10..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/lab0/Labb13/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9287f5083623b375139afb391af71cc533a7dd37..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/lab0/Labb13/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index aa7d6427e6fa1074b79ccd52ef67ac15c5637e85..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/lab0/Labb13/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9126ae37cbc3587421d6889eadd1d91fbf1994d4..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/Labb13/app/src/main/res/values-night/themes.xml b/lab0/Labb13/app/src/main/res/values-night/themes.xml deleted file mode 100644 index ad14235df1614c11609779522e11f4e711c5e518..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,7 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Labb13" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your dark theme here. --> - <!-- <item name="colorPrimary">@color/my_dark_primary</item> --> - </style> -</resources> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/values/colors.xml b/lab0/Labb13/app/src/main/res/values/colors.xml deleted file mode 100644 index c8524cd961d27b6695e755c6ef2d4d58cf38431e..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<resources> - <color name="black">#FF000000</color> - <color name="white">#FFFFFFFF</color> -</resources> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/values/strings.xml b/lab0/Labb13/app/src/main/res/values/strings.xml deleted file mode 100644 index f86a73e9632721f6fd74a2bbecd8753dabbfc65d..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ -<resources> - <string name="app_name">Labb1.3</string> -</resources> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/values/themes.xml b/lab0/Labb13/app/src/main/res/values/themes.xml deleted file mode 100644 index f9936a71e55ac72d76cb1d8265df88b7e5c4021d..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,9 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Labb13" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your light theme here. --> - <!-- <item name="colorPrimary">@color/my_light_primary</item> --> - </style> - - <style name="Theme.Labb13" parent="Base.Theme.Labb13" /> -</resources> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/xml/backup_rules.xml b/lab0/Labb13/app/src/main/res/xml/backup_rules.xml deleted file mode 100644 index fa0f996d2c2a6bdd11f5371de4268c8389d6c720..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/xml/backup_rules.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample backup rules file; uncomment and customize as necessary. - See https://developer.android.com/guide/topics/data/autobackup - for details. - Note: This file is ignored for devices older that API 31 - See https://developer.android.com/about/versions/12/backup-restore ---> -<full-backup-content> - <!-- - <include domain="sharedpref" path="."/> - <exclude domain="sharedpref" path="device.xml"/> ---> -</full-backup-content> \ No newline at end of file diff --git a/lab0/Labb13/app/src/main/res/xml/data_extraction_rules.xml b/lab0/Labb13/app/src/main/res/xml/data_extraction_rules.xml deleted file mode 100644 index 9ee9997b0b4726e57c27b2f7b21462b604ff8a88..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/main/res/xml/data_extraction_rules.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample data extraction rules file; uncomment and customize as necessary. - See https://developer.android.com/about/versions/12/backup-restore#xml-changes - for details. ---> -<data-extraction-rules> - <cloud-backup> - <!-- TODO: Use <include> and <exclude> to control what is backed up. - <include .../> - <exclude .../> - --> - </cloud-backup> - <!-- - <device-transfer> - <include .../> - <exclude .../> - </device-transfer> - --> -</data-extraction-rules> \ No newline at end of file diff --git a/lab0/Labb13/app/src/test/java/com/example/labb13/ExampleUnitTest.java b/lab0/Labb13/app/src/test/java/com/example/labb13/ExampleUnitTest.java deleted file mode 100644 index a3c4dd3ac8c126886c5c8f987cb08abf1c4a6031..0000000000000000000000000000000000000000 --- a/lab0/Labb13/app/src/test/java/com/example/labb13/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.example.labb13; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file diff --git a/lab0/Labb13/build.gradle.kts b/lab0/Labb13/build.gradle.kts deleted file mode 100644 index c21801c71b6929d946defe659f1774baf2d1fae3..0000000000000000000000000000000000000000 --- a/lab0/Labb13/build.gradle.kts +++ /dev/null @@ -1,4 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -plugins { - id("com.android.application") version "8.1.2" apply false -} \ No newline at end of file diff --git a/lab0/Labb13/gradle.properties b/lab0/Labb13/gradle.properties deleted file mode 100644 index 3e927b11efbfe301c31c0a8e4d7e4acb829d631a..0000000000000000000000000000000000000000 --- a/lab0/Labb13/gradle.properties +++ /dev/null @@ -1,21 +0,0 @@ -# Project-wide Gradle settings. -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Enables namespacing of each library's R class so that its R class includes only the -# resources declared in the library itself and none from the library's dependencies, -# thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true \ No newline at end of file diff --git a/lab0/Labb13/gradle/wrapper/gradle-wrapper.jar b/lab0/Labb13/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c023ec8b20f512888fe07c5bd3ff77bb8f..0000000000000000000000000000000000000000 Binary files a/lab0/Labb13/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/lab0/Labb13/gradle/wrapper/gradle-wrapper.properties b/lab0/Labb13/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 639f7e3e5bfbce163a781e6757c2084a19755f2a..0000000000000000000000000000000000000000 --- a/lab0/Labb13/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Mon Oct 16 12:43:41 CEST 2023 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/lab0/Labb13/gradlew b/lab0/Labb13/gradlew deleted file mode 100644 index 4f906e0c811fc9e230eb44819f509cd0627f2600..0000000000000000000000000000000000000000 --- a/lab0/Labb13/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" diff --git a/lab0/Labb13/gradlew.bat b/lab0/Labb13/gradlew.bat deleted file mode 100644 index 107acd32c4e687021ef32db511e8a206129b88ec..0000000000000000000000000000000000000000 --- a/lab0/Labb13/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/lab0/Labb13/settings.gradle.kts b/lab0/Labb13/settings.gradle.kts deleted file mode 100644 index 9a6e3988b4be88be1516ff5fa4b88625b7b53f7a..0000000000000000000000000000000000000000 --- a/lab0/Labb13/settings.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -pluginManagement { - repositories { - google() - mavenCentral() - gradlePluginPortal() - } -} -dependencyResolutionManagement { - repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) - repositories { - google() - mavenCentral() - } -} - -rootProject.name = "Labb1.3" -include(":app") diff --git a/lab0/lab013java/.gitignore b/lab0/lab013java/.gitignore deleted file mode 100644 index aa724b77071afcbd9bb398053e05adaf7ac9405a..0000000000000000000000000000000000000000 --- a/lab0/lab013java/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/caches -/.idea/libraries -/.idea/modules.xml -/.idea/workspace.xml -/.idea/navEditor.xml -/.idea/assetWizardSettings.xml -.DS_Store -/build -/captures -.externalNativeBuild -.cxx -local.properties diff --git a/lab0/lab013java/.idea/.gitignore b/lab0/lab013java/.idea/.gitignore deleted file mode 100644 index 26d33521af10bcc7fd8cea344038eaaeb78d0ef5..0000000000000000000000000000000000000000 --- a/lab0/lab013java/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/lab0/lab013java/.idea/.name b/lab0/lab013java/.idea/.name deleted file mode 100644 index 60af0c60f159f4c57cffc65266a4815967273122..0000000000000000000000000000000000000000 --- a/lab0/lab013java/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -lab(0)1.3java \ No newline at end of file diff --git a/lab0/lab013java/.idea/compiler.xml b/lab0/lab013java/.idea/compiler.xml deleted file mode 100644 index b589d56e9f285d8cfdc6c270853a5d439021a278..0000000000000000000000000000000000000000 --- a/lab0/lab013java/.idea/compiler.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="CompilerConfiguration"> - <bytecodeTargetLevel target="17" /> - </component> -</project> \ No newline at end of file diff --git a/lab0/lab013java/.idea/gradle.xml b/lab0/lab013java/.idea/gradle.xml deleted file mode 100644 index 6d890505686cbe08ef947ab55a100426a0f4befe..0000000000000000000000000000000000000000 --- a/lab0/lab013java/.idea/gradle.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="GradleSettings"> - <option name="linkedExternalProjectsSettings"> - <GradleProjectSettings> - <option name="testRunner" value="GRADLE" /> - <option name="distributionType" value="DEFAULT_WRAPPED" /> - <option name="externalProjectPath" value="$PROJECT_DIR$" /> - <option name="gradleJvm" value="jbr-17" /> - <option name="modules"> - <set> - <option value="$PROJECT_DIR$" /> - <option value="$PROJECT_DIR$/app" /> - </set> - </option> - </GradleProjectSettings> - </option> - </component> -</project> \ No newline at end of file diff --git a/lab0/lab013java/.idea/misc.xml b/lab0/lab013java/.idea/misc.xml deleted file mode 100644 index 0ad17cbd33a2f389d524bc4bfef9c52e1f7ab490..0000000000000000000000000000000000000000 --- a/lab0/lab013java/.idea/misc.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="ExternalStorageConfigurationManager" enabled="true" /> - <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK"> - <output url="file://$PROJECT_DIR$/build/classes" /> - </component> - <component name="ProjectType"> - <option name="id" value="Android" /> - </component> -</project> \ No newline at end of file diff --git a/lab0/lab013java/app/.gitignore b/lab0/lab013java/app/.gitignore deleted file mode 100644 index 42afabfd2abebf31384ca7797186a27a4b7dbee8..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/lab0/lab013java/app/build.gradle.kts b/lab0/lab013java/app/build.gradle.kts deleted file mode 100644 index b98d9f32652d5ab6dcac49038f7f10d9e23cbbb6..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/build.gradle.kts +++ /dev/null @@ -1,42 +0,0 @@ -plugins { - id("com.android.application") -} - -android { - namespace = "com.example.lab013java" - compileSdk = 34 - - defaultConfig { - applicationId = "com.example.lab013java" - minSdk = 24 - targetSdk = 34 - versionCode = 1 - versionName = "1.0" - - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" - } - - buildTypes { - release { - isMinifyEnabled = false - proguardFiles( - getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" - ) - } - } - compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 - } -} - -dependencies { - - implementation("androidx.appcompat:appcompat:1.6.1") - implementation("com.google.android.material:material:1.10.0") - implementation("androidx.constraintlayout:constraintlayout:2.1.4") - testImplementation("junit:junit:4.13.2") - androidTestImplementation("androidx.test.ext:junit:1.1.5") - androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") -} \ No newline at end of file diff --git a/lab0/lab013java/app/proguard-rules.pro b/lab0/lab013java/app/proguard-rules.pro deleted file mode 100644 index 481bb434814107eb79d7a30b676d344b0df2f8ce..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/lab0/lab013java/app/src/androidTest/java/com/example/lab013java/ExampleInstrumentedTest.java b/lab0/lab013java/app/src/androidTest/java/com/example/lab013java/ExampleInstrumentedTest.java deleted file mode 100644 index 61b9624cf348acebd277ab4462e44aaeecaf01bf..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/androidTest/java/com/example/lab013java/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.example.lab013java; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("com.example.lab013java", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/AndroidManifest.xml b/lab0/lab013java/app/src/main/AndroidManifest.xml deleted file mode 100644 index fbee5f90957590737afa46e16d297fa0bf979d5c..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools"> - - <application - android:allowBackup="true" - android:dataExtractionRules="@xml/data_extraction_rules" - android:fullBackupContent="@xml/backup_rules" - android:icon="@mipmap/ic_launcher" - android:label="@string/app_name" - android:roundIcon="@mipmap/ic_launcher_round" - android:supportsRtl="true" - android:theme="@style/Theme.Lab013java" - tools:targetApi="31"> - <activity - android:name=".MainActivity" - android:exported="true"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> - -</manifest> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/java/com/example/lab013java/MainActivity.java b/lab0/lab013java/app/src/main/java/com/example/lab013java/MainActivity.java deleted file mode 100644 index 6f55d10ae7581f1410091b4007a4494b2fde72d7..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/java/com/example/lab013java/MainActivity.java +++ /dev/null @@ -1,216 +0,0 @@ -package com.example.lab013java; - -import static android.view.Gravity.CENTER; -import static android.view.Gravity.CENTER_HORIZONTAL; - -import androidx.annotation.ColorInt; -import androidx.appcompat.app.AppCompatActivity; - -import android.graphics.Color; -import android.graphics.Typeface; -import android.os.Bundle; -import android.text.InputType; -import android.text.Layout; -import android.view.Gravity; -import android.view.View; -import android.view.ViewGroup; -import android.widget.Button; -import android.widget.CheckBox; -import android.widget.CompoundButton; -import android.widget.EditText; -import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.RelativeLayout; -import android.widget.SeekBar; -import android.widget.TextView; -import android.widget.Toast; - -public class MainActivity extends AppCompatActivity { - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - - // Vi skapar en stor vertical linearLayout - LinearLayout myLayout = new LinearLayout(this); - myLayout.setOrientation(LinearLayout.VERTICAL); - - // rad 1 - - LinearLayout rad1 = new LinearLayout(this); - rad1.setOrientation(LinearLayout.HORIZONTAL); - - TextView title=new TextView (this); - title.setText("Laboration 1.3"); - title.setTextSize(30); - title.setTypeface(null, Typeface.BOLD); - rad1.setBackgroundColor(Color.LTGRAY); - - rad1.addView(title); - - //rad 2 - - LinearLayout rad2 = new LinearLayout(this); - rad2.setOrientation(LinearLayout.HORIZONTAL); - - - - TextView qs = new TextView (this); - LinearLayout.LayoutParams rad2Params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT); - - - - - qs.setText("Hur trivs du på LiU"); - qs.setTextAlignment(View.TEXT_ALIGNMENT_CENTER); - qs.setTextSize(20); - qs.setTextColor(Color.GRAY); - - rad2.addView(qs,rad2Params); - - - //rad 3 CHECKBOXAR - - LinearLayout rad3 = new LinearLayout(this); - rad3.setOrientation(LinearLayout.HORIZONTAL); - - CheckBox cb = new CheckBox(this); - cb.setText("Bra"); - cb.setTextSize(20); - CheckBox cb1 = new CheckBox(this); - cb1.setText("Mycket Bra"); - cb1.setTextSize(20); - CheckBox cb2 = new CheckBox(this); - cb2.setText("Jättebra"); - cb2.setTextSize(20); - - rad3.addView(cb); - rad3.addView(cb1); - rad3.addView(cb2); - - //rad 4 fråga - - LinearLayout rad4 = new LinearLayout(this); - rad4.setOrientation(LinearLayout.HORIZONTAL); - - - - TextView qs1 = new TextView (this); - LinearLayout.LayoutParams rad4Params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT); - - - - - qs1.setText("Läser du på LiTH"); - qs1.setTextAlignment(View.TEXT_ALIGNMENT_CENTER); - qs1.setTextSize(20); - qs1.setTextColor(Color.GRAY); - - rad4.addView(qs1,rad4Params); - - - //rad 5 fler checkboxar - - LinearLayout rad5 = new LinearLayout(this); - rad5.setOrientation(LinearLayout.HORIZONTAL); - - CheckBox cb3 = new CheckBox(this); - cb3.setText("Ja"); - cb3.setTextSize(20); - CheckBox cb4 = new CheckBox(this); - cb4.setText("Nej"); - cb4.setTextSize(20); - - - rad5.addView(cb3); - rad5.addView(cb4); - - //rad 6 BILD - - LinearLayout rad6 = new LinearLayout(this); - rad6.setOrientation(LinearLayout.HORIZONTAL); - - ImageView img = new ImageView(this); - LinearLayout.LayoutParams rad6Params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT); - - img.setImageResource(R.drawable.logo); - rad6Params.width = 650; - rad6Params.height = 650; - - rad6.setGravity(CENTER_HORIZONTAL); - - rad6.addView(img, rad6Params); - - - -//RAD 7 FRGA TVÅ - - LinearLayout rad7 = new LinearLayout(this); - rad7.setOrientation(LinearLayout.HORIZONTAL); - - - - TextView qs7 = new TextView (this); - LinearLayout.LayoutParams rad7Params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT); - - - - - qs7.setText("Är detta LiUs logotyp"); - qs7.setTextAlignment(View.TEXT_ALIGNMENT_CENTER); - qs7.setTextSize(20); - qs7.setTextColor(Color.GRAY); - - rad7.addView(qs7,rad7Params); - - - //RAD 8 FLER KNAPPAR - - LinearLayout rad8 = new LinearLayout(this); - rad8.setOrientation(LinearLayout.HORIZONTAL); - - CheckBox cb8 = new CheckBox(this); - cb8.setText("Ja"); - cb8.setTextSize(20); - CheckBox cb9 = new CheckBox(this); - cb9.setText("Nej"); - cb9.setTextSize(20); - - - rad8.addView(cb8); - rad8.addView(cb9); - - - //RAD SKICKA IN (9) - - LinearLayout rad9 = new LinearLayout(this); - - Button myButton = new Button(this); - - myButton.setText("SKICKA IN"); - myButton.setTextSize(20); - myButton.setBackgroundColor(Color.LTGRAY); - rad9.setBackgroundColor(Color.LTGRAY); - - rad9.setGravity(CENTER_HORIZONTAL); - - rad9.addView(myButton); - - myLayout.addView(rad1); - myLayout.addView(rad2); - myLayout.addView(rad3); - myLayout.addView(rad4); - myLayout.addView(rad5); - myLayout.addView(rad6); - myLayout.addView(rad7); - myLayout.addView(rad8); - myLayout.addView(rad9); - - setContentView(myLayout); - //setContentView(R.layout.activity_main); - } -} \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/drawable/ic_launcher_background.xml b/lab0/lab013java/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 07d5da9cbf141911847041df5d7b87f0dd5ef9d4..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path - android:fillColor="#3DDC84" - android:pathData="M0,0h108v108h-108z" /> - <path - android:fillColor="#00000000" - android:pathData="M9,0L9,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,0L19,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,0L29,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,0L39,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,0L49,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,0L59,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,0L69,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,0L79,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M89,0L89,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M99,0L99,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,9L108,9" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,19L108,19" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,29L108,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,39L108,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,49L108,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,59L108,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,69L108,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,79L108,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,89L108,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,99L108,99" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,29L89,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,39L89,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,49L89,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,59L89,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,69L89,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,79L89,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,19L29,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,19L39,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,19L49,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,19L59,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,19L69,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,19L79,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> -</vector> diff --git a/lab0/lab013java/app/src/main/res/drawable/ic_launcher_foreground.xml b/lab0/lab013java/app/src/main/res/drawable/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d11462a4b96669193de13a711a3a36220a0..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/drawable/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ -<vector xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:aapt="http://schemas.android.com/aapt" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> - <aapt:attr name="android:fillColor"> - <gradient - android:endX="85.84757" - android:endY="92.4963" - android:startX="42.9492" - android:startY="49.59793" - android:type="linear"> - <item - android:color="#44000000" - android:offset="0.0" /> - <item - android:color="#00000000" - android:offset="1.0" /> - </gradient> - </aapt:attr> - </path> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> -</vector> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/drawable/logo.png b/lab0/lab013java/app/src/main/res/drawable/logo.png deleted file mode 100644 index 57edcf04818777d70423ef4f425c9994240784ea..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/drawable/logo.png and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/layout/activity_main.xml b/lab0/lab013java/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index b8e039a7dc991f8daa843989bb4aa1dbf3a74535..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,27 +0,0 @@ -<?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=".MainActivity"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="Hello World!" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent" /> - <CheckBox - android:id="@+id/checkbox" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="Bra" - android:scaleX="1.2" - android:scaleY="1.2" - tools:ignore="MissingConstraints" /> - - -</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/lab0/lab013java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/lab0/lab013java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/lab0/lab013java/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index c209e78ecd372343283f4157dcfd918ec5165bb3..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/lab0/lab013java/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp deleted file mode 100644 index b2dfe3d1ba5cf3ee31b3ecc1ced89044a1f3b7a9..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/lab0/lab013java/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 4f0f1d64e58ba64d180ce43ee13bf9a17835fbca..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/lab0/lab013java/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp deleted file mode 100644 index 62b611da081676d42f6c3f78a2c91e7bcedddedb..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/lab0/lab013java/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index 948a3070fe34c611c42c0d3ad3013a0dce358be0..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/lab0/lab013java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp deleted file mode 100644 index 1b9a6956b3acdc11f40ce2bb3f6efbd845cc243f..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/lab0/lab013java/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index 28d4b77f9f036a47549d47db79c16788749dca10..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/lab0/lab013java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9287f5083623b375139afb391af71cc533a7dd37..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/lab0/lab013java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index aa7d6427e6fa1074b79ccd52ef67ac15c5637e85..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/lab0/lab013java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9126ae37cbc3587421d6889eadd1d91fbf1994d4..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/lab0/lab013java/app/src/main/res/values-night/themes.xml b/lab0/lab013java/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 42735ef0a0990ade63be11b7dcec9cae221901b5..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,7 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Lab013java" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your dark theme here. --> - <!-- <item name="colorPrimary">@color/my_dark_primary</item> --> - </style> -</resources> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/values/colors.xml b/lab0/lab013java/app/src/main/res/values/colors.xml deleted file mode 100644 index c8524cd961d27b6695e755c6ef2d4d58cf38431e..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<resources> - <color name="black">#FF000000</color> - <color name="white">#FFFFFFFF</color> -</resources> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/values/strings.xml b/lab0/lab013java/app/src/main/res/values/strings.xml deleted file mode 100644 index 391aeaf429f3a6b13df9a147719bbfe6fb836775..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ -<resources> - <string name="app_name">lab(0)1.3java</string> -</resources> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/values/themes.xml b/lab0/lab013java/app/src/main/res/values/themes.xml deleted file mode 100644 index cf912385320f10ff4be112b76fe9589e15b92f12..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,9 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Lab013java" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your light theme here. --> - <!-- <item name="colorPrimary">@color/my_light_primary</item> --> - </style> - - <style name="Theme.Lab013java" parent="Base.Theme.Lab013java" /> -</resources> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/xml/backup_rules.xml b/lab0/lab013java/app/src/main/res/xml/backup_rules.xml deleted file mode 100644 index fa0f996d2c2a6bdd11f5371de4268c8389d6c720..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/xml/backup_rules.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample backup rules file; uncomment and customize as necessary. - See https://developer.android.com/guide/topics/data/autobackup - for details. - Note: This file is ignored for devices older that API 31 - See https://developer.android.com/about/versions/12/backup-restore ---> -<full-backup-content> - <!-- - <include domain="sharedpref" path="."/> - <exclude domain="sharedpref" path="device.xml"/> ---> -</full-backup-content> \ No newline at end of file diff --git a/lab0/lab013java/app/src/main/res/xml/data_extraction_rules.xml b/lab0/lab013java/app/src/main/res/xml/data_extraction_rules.xml deleted file mode 100644 index 9ee9997b0b4726e57c27b2f7b21462b604ff8a88..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/main/res/xml/data_extraction_rules.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample data extraction rules file; uncomment and customize as necessary. - See https://developer.android.com/about/versions/12/backup-restore#xml-changes - for details. ---> -<data-extraction-rules> - <cloud-backup> - <!-- TODO: Use <include> and <exclude> to control what is backed up. - <include .../> - <exclude .../> - --> - </cloud-backup> - <!-- - <device-transfer> - <include .../> - <exclude .../> - </device-transfer> - --> -</data-extraction-rules> \ No newline at end of file diff --git a/lab0/lab013java/app/src/test/java/com/example/lab013java/ExampleUnitTest.java b/lab0/lab013java/app/src/test/java/com/example/lab013java/ExampleUnitTest.java deleted file mode 100644 index 53d35aacbf9c6ca766721b20ccf1db87bb80b697..0000000000000000000000000000000000000000 --- a/lab0/lab013java/app/src/test/java/com/example/lab013java/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.example.lab013java; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file diff --git a/lab0/lab013java/build.gradle.kts b/lab0/lab013java/build.gradle.kts deleted file mode 100644 index c21801c71b6929d946defe659f1774baf2d1fae3..0000000000000000000000000000000000000000 --- a/lab0/lab013java/build.gradle.kts +++ /dev/null @@ -1,4 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -plugins { - id("com.android.application") version "8.1.2" apply false -} \ No newline at end of file diff --git a/lab0/lab013java/gradle.properties b/lab0/lab013java/gradle.properties deleted file mode 100644 index 3e927b11efbfe301c31c0a8e4d7e4acb829d631a..0000000000000000000000000000000000000000 --- a/lab0/lab013java/gradle.properties +++ /dev/null @@ -1,21 +0,0 @@ -# Project-wide Gradle settings. -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Enables namespacing of each library's R class so that its R class includes only the -# resources declared in the library itself and none from the library's dependencies, -# thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true \ No newline at end of file diff --git a/lab0/lab013java/gradle/wrapper/gradle-wrapper.jar b/lab0/lab013java/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c023ec8b20f512888fe07c5bd3ff77bb8f..0000000000000000000000000000000000000000 Binary files a/lab0/lab013java/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/lab0/lab013java/gradle/wrapper/gradle-wrapper.properties b/lab0/lab013java/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 7024f84f3ccf05e7e9b01baa7af4f2455a30137b..0000000000000000000000000000000000000000 --- a/lab0/lab013java/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Mon Oct 30 11:47:25 CET 2023 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/lab0/lab013java/gradlew b/lab0/lab013java/gradlew deleted file mode 100644 index 4f906e0c811fc9e230eb44819f509cd0627f2600..0000000000000000000000000000000000000000 --- a/lab0/lab013java/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" diff --git a/lab0/lab013java/gradlew.bat b/lab0/lab013java/gradlew.bat deleted file mode 100644 index 107acd32c4e687021ef32db511e8a206129b88ec..0000000000000000000000000000000000000000 --- a/lab0/lab013java/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/lab0/lab013java/settings.gradle.kts b/lab0/lab013java/settings.gradle.kts deleted file mode 100644 index 7ba8e59ac036d63dc302449b16e60f86397843c1..0000000000000000000000000000000000000000 --- a/lab0/lab013java/settings.gradle.kts +++ /dev/null @@ -1,18 +0,0 @@ -pluginManagement { - repositories { - google() - mavenCentral() - gradlePluginPortal() - } -} -dependencyResolutionManagement { - repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) - repositories { - google() - mavenCentral() - } -} - -rootProject.name = "lab(0)1.3java" -include(":app") - \ No newline at end of file diff --git a/labb1/.gitignore b/labb1/.gitignore deleted file mode 100644 index aa724b77071afcbd9bb398053e05adaf7ac9405a..0000000000000000000000000000000000000000 --- a/labb1/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/caches -/.idea/libraries -/.idea/modules.xml -/.idea/workspace.xml -/.idea/navEditor.xml -/.idea/assetWizardSettings.xml -.DS_Store -/build -/captures -.externalNativeBuild -.cxx -local.properties diff --git a/labb1/.idea/.gitignore b/labb1/.idea/.gitignore deleted file mode 100644 index 26d33521af10bcc7fd8cea344038eaaeb78d0ef5..0000000000000000000000000000000000000000 --- a/labb1/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/labb1/.idea/compiler.xml b/labb1/.idea/compiler.xml deleted file mode 100644 index b589d56e9f285d8cfdc6c270853a5d439021a278..0000000000000000000000000000000000000000 --- a/labb1/.idea/compiler.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="CompilerConfiguration"> - <bytecodeTargetLevel target="17" /> - </component> -</project> \ No newline at end of file diff --git a/labb1/.idea/gradle.xml b/labb1/.idea/gradle.xml deleted file mode 100644 index ae388c2a5050a3f9bc2d4f1b302cb72ee37d49b4..0000000000000000000000000000000000000000 --- a/labb1/.idea/gradle.xml +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="GradleMigrationSettings" migrationVersion="1" /> - <component name="GradleSettings"> - <option name="linkedExternalProjectsSettings"> - <GradleProjectSettings> - <option name="testRunner" value="GRADLE" /> - <option name="distributionType" value="DEFAULT_WRAPPED" /> - <option name="externalProjectPath" value="$PROJECT_DIR$" /> - <option name="gradleJvm" value="jbr-17" /> - <option name="modules"> - <set> - <option value="$PROJECT_DIR$" /> - <option value="$PROJECT_DIR$/app" /> - </set> - </option> - </GradleProjectSettings> - </option> - </component> -</project> \ No newline at end of file diff --git a/labb1/.idea/misc.xml b/labb1/.idea/misc.xml deleted file mode 100644 index 8978d23db569daa721cb26dde7923f4c673d1fc9..0000000000000000000000000000000000000000 --- a/labb1/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ -<project version="4"> - <component name="ExternalStorageConfigurationManager" enabled="true" /> - <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK"> - <output url="file://$PROJECT_DIR$/build/classes" /> - </component> - <component name="ProjectType"> - <option name="id" value="Android" /> - </component> -</project> \ No newline at end of file diff --git a/labb1/app/.gitignore b/labb1/app/.gitignore deleted file mode 100644 index 42afabfd2abebf31384ca7797186a27a4b7dbee8..0000000000000000000000000000000000000000 --- a/labb1/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/labb1/app/build.gradle.kts b/labb1/app/build.gradle.kts deleted file mode 100644 index c5100c607825be613eb3b09b91971acad4841c72..0000000000000000000000000000000000000000 --- a/labb1/app/build.gradle.kts +++ /dev/null @@ -1,39 +0,0 @@ -plugins { - id("com.android.application") -} - -android { - namespace = "com.example.labb1" - compileSdk = 34 - - defaultConfig { - applicationId = "com.example.labb1" - minSdk = 34 - targetSdk = 34 - versionCode = 1 - versionName = "1.0" - - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" - } - - buildTypes { - release { - isMinifyEnabled = false - proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") - } - } - compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 - } -} - -dependencies { - - implementation("androidx.appcompat:appcompat:1.6.1") - implementation("com.google.android.material:material:1.10.0") - implementation("androidx.constraintlayout:constraintlayout:2.1.4") - testImplementation("junit:junit:4.13.2") - androidTestImplementation("androidx.test.ext:junit:1.1.5") - androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") -} \ No newline at end of file diff --git a/labb1/app/proguard-rules.pro b/labb1/app/proguard-rules.pro deleted file mode 100644 index 481bb434814107eb79d7a30b676d344b0df2f8ce..0000000000000000000000000000000000000000 --- a/labb1/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/labb1/app/src/androidTest/java/com/example/labb1/ExampleInstrumentedTest.java b/labb1/app/src/androidTest/java/com/example/labb1/ExampleInstrumentedTest.java deleted file mode 100644 index d7adb4605b3a9cf9d75c39c5aa9263ee2f094c99..0000000000000000000000000000000000000000 --- a/labb1/app/src/androidTest/java/com/example/labb1/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.example.labb1; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("com.example.labb1", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/labb1/app/src/main/AndroidManifest.xml b/labb1/app/src/main/AndroidManifest.xml deleted file mode 100644 index 30840472fd0f7a5ba28db213620bf94a2214b87e..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools"> - - <application - android:allowBackup="true" - android:dataExtractionRules="@xml/data_extraction_rules" - android:fullBackupContent="@xml/backup_rules" - android:icon="@mipmap/ic_launcher" - android:label="@string/app_name" - android:roundIcon="@mipmap/ic_launcher_round" - android:supportsRtl="true" - android:theme="@style/Theme.Labb1" - tools:targetApi="31"> - <activity - android:name=".MainActivity" - android:exported="true"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> - -</manifest> \ No newline at end of file diff --git a/labb1/app/src/main/java/com/example/labb1/MainActivity.java b/labb1/app/src/main/java/com/example/labb1/MainActivity.java deleted file mode 100644 index 9090141a5ea2ecaea1b95eed5873f27142c56092..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/java/com/example/labb1/MainActivity.java +++ /dev/null @@ -1,190 +0,0 @@ -package com.example.labb1; -import androidx.appcompat.app.AppCompatActivity; -import android.graphics.Color; -import android.os.Bundle; -import android.text.Editable; -import android.text.TextWatcher; -import android.util.Log; -import android.view.View; -import android.widget.EditText; -import android.widget.ExpandableListAdapter; -import android.widget.ExpandableListView; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.StringTokenizer; - -public class MainActivity extends AppCompatActivity { - int groupPos=-1; - int oldGroupPos=-1; - int childPos=-1; - int oldChildPos=-1; - String groupName=""; - String childName=""; - boolean hadChild = false; - EditText input; - List<String> groupList; - List<String> childList; - Map<String, List<String>> collection; - ExpandableListView expandableListView; - ExpandableListAdapter expandableListAdapter; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - createGroupList(); - createCollection(); - input = findViewById(R.id.input); - input.setText("/"); - expandableListView = findViewById(R.id.listView); - expandableListAdapter = new MyExpandableListAdapter(this, groupList, collection); - expandableListView.setAdapter(expandableListAdapter); - expandableListView.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() { - @Override - public boolean onGroupClick(ExpandableListView parent, View v, int i, long id) { - String selected = expandableListAdapter.getGroup(i).toString(); - input.setText("/" + selected + "/"); - if(oldGroupPos!=i && oldChildPos!=-1){ - colorChildWhite(oldGroupPos, oldChildPos); - expandableListView.collapseGroup(oldGroupPos); - } - oldGroupPos = i; - return true; - } - }); - expandableListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() { - @Override - public boolean onChildClick(ExpandableListView parent, View v, int i, int i1, long id) { - groupName = expandableListAdapter.getGroup(i).toString(); - childName = expandableListAdapter.getChild(i, i1).toString(); - input.setText("/" + groupName + "/" + childName + "/"); - decolorIfNewChildInSameGroup(); - colorChildGray(i, i1); - return true; - } - }); - input.addTextChangedListener(new TextWatcher() { - @Override - public void beforeTextChanged(CharSequence s, int start, int count, int after) { } - @Override - public void onTextChanged(CharSequence s, int start, int before, int count) { } - @Override - public void afterTextChanged(Editable editable) { - String text = editable.toString().trim(); - Log.d("text", text); - if(text.indexOf("/")==0){ - StringTokenizer tokenizer = new StringTokenizer(text, "/", true); - while(tokenizer.hasMoreTokens()){ - String delimiter = tokenizer.nextToken(); - if(delimiter.equals("/")){ - if(tokenizer.hasMoreTokens()){ - String groupToken = tokenizer.nextToken(); - setInputBackground(groupList, groupToken); - for(int i=0; i<groupList.size(); i++){ - if(groupToken.equals(groupList.get(i))){ - groupPos = i; - if(tokenizer.hasMoreTokens()){ - delimiter = tokenizer.nextToken(); - Log.d("second delimiter", delimiter); - if(delimiter.equals("/")){ - expandableListView.expandGroup(groupPos); - } - }else{ - if(oldChildPos!=-1 && oldGroupPos!=-1){ - colorChildWhite(oldGroupPos, oldChildPos); - } - collapseGroups(); - return; - } - } - } - } if(tokenizer.hasMoreTokens()){ - String childToken = tokenizer.nextToken(); - setInputBackground(childList, childToken); - for(int i=0; i<childList.size(); i++){ - if(childToken.equals(childList.get(i))){ - childPos = i; - if(tokenizer.hasMoreTokens()){ - delimiter = tokenizer.nextToken(); - if(delimiter.equals("/")){ - decolorIfNewChildInSameGroup(); - colorChildGray(groupPos, childPos); - } - }else{ - hadChild = false; - return; - } - } - } - } - }else{ - input.setBackgroundColor(Color.RED); - } - } - }else{ - input.setBackgroundColor(Color.WHITE); - input.setText("/"); - } - - } - }); - } - - public void setInputBackground(List<String> list, String token){ - for(int j=0; j<list.size(); j++){ - if(list.get(j).startsWith(token)){ - input.setBackgroundColor(Color.WHITE); - break; - }else{ - input.setBackgroundColor(Color.RED); - } - } - } - public void decolorIfNewChildInSameGroup(){ - if(oldGroupPos!=-1 && oldChildPos!=-1 && childPos!=-1 && oldChildPos!=childPos && groupPos==oldGroupPos){ - colorChildWhite(oldGroupPos, oldChildPos); - } - } - public void collapseGroups(){ - for(int i=0; i<groupList.size(); i++){ - expandableListView.collapseGroup(i); - } - } - public void colorChildWhite(int x, int y){ - int oldChildIndex = expandableListView.getFlatListPosition(ExpandableListView. - getPackedPositionForChild(x, y)); - expandableListView.getChildAt(oldChildIndex).setBackgroundColor(Color.WHITE); - } - public void colorChildGray(int x, int y){ - int oldChildIndex = expandableListView.getFlatListPosition(ExpandableListView. - getPackedPositionForChild(x, y)); - expandableListView.getChildAt(oldChildIndex).setBackgroundColor(Color.GRAY); - oldChildPos = y; - oldGroupPos = x; - } - private void createCollection() { - String[] data = {"green", "yellow", "red", "blue"}; - collection = new HashMap<String, List<String>>(); - for(String group: groupList){ - loadChild(data); - collection.put(group, childList); - } - } - - private void loadChild(String[] data) { - childList = new ArrayList<>(); - for(String color : data){ - childList.add(color); - } - } - - private void createGroupList() { - groupList = new ArrayList<>(); - groupList.add("light"); - groupList.add("medium"); - groupList.add("dark"); - } -} \ No newline at end of file diff --git a/labb1/app/src/main/java/com/example/labb1/MyExpandableListAdapter.java b/labb1/app/src/main/java/com/example/labb1/MyExpandableListAdapter.java deleted file mode 100644 index 0aa4012de0f95cde62a8eb61cfe6944c5314b278..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/java/com/example/labb1/MyExpandableListAdapter.java +++ /dev/null @@ -1,97 +0,0 @@ -package com.example.labb1; - -import android.content.Context; -import android.graphics.Typeface; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.BaseExpandableListAdapter; -import android.widget.Filter; -import android.widget.Filterable; -import android.widget.TextView; - -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -public class MyExpandableListAdapter extends BaseExpandableListAdapter { - private Context context; - private Map<String, List<String>> collection; - private List<String> groupList; - - private int selectedChildPosition = -1; - - - public MyExpandableListAdapter(Context context, List<String> groupList, - Map<String, List<String>> collection) { - this.context = context; - this.groupList = groupList; - this.collection = collection; - } - - @Override - public int getGroupCount() { - return groupList.size(); - } - - @Override - public int getChildrenCount(int i) { - return collection.get(groupList.get(i)).size(); - } - - @Override - public Object getGroup(int i) { - return groupList.get(i); - } - - @Override - public Object getChild(int i, int i1) { - return collection.get(groupList.get(i)).get(i1); - } - - @Override - public long getGroupId(int i) { - return i; - } - - @Override - public long getChildId(int i, int i1) { - return i1; - } - - @Override - public boolean hasStableIds() { - return true; - } - - @Override - public View getGroupView(int i, boolean b, View view, ViewGroup viewGroup) { - String name = getGroup(i).toString(); - if (view == null) { - LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); - view = inflater.inflate(R.layout.group_item, null); - } - TextView item = view.findViewById(R.id.group); - item.setTypeface(null, Typeface.BOLD); - item.setText(name); - return view; - } - - @Override - public View getChildView(int i, int i1, boolean b, View view, ViewGroup viewGroup) { - String model = getChild(i, i1).toString(); - if (view == null) { - LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); - view = inflater.inflate(R.layout.child_item, null); - } - TextView item = view.findViewById(R.id.child); - item.setText(model); - return view; - } - - @Override - public boolean isChildSelectable(int i, int i1) { - return true; - } - -} \ No newline at end of file diff --git a/labb1/app/src/main/res/drawable/ic_launcher_background.xml b/labb1/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 07d5da9cbf141911847041df5d7b87f0dd5ef9d4..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path - android:fillColor="#3DDC84" - android:pathData="M0,0h108v108h-108z" /> - <path - android:fillColor="#00000000" - android:pathData="M9,0L9,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,0L19,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,0L29,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,0L39,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,0L49,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,0L59,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,0L69,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,0L79,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M89,0L89,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M99,0L99,108" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,9L108,9" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,19L108,19" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,29L108,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,39L108,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,49L108,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,59L108,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,69L108,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,79L108,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,89L108,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M0,99L108,99" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,29L89,29" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,39L89,39" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,49L89,49" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,59L89,59" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,69L89,69" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M19,79L89,79" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M29,19L29,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M39,19L39,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M49,19L49,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M59,19L59,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M69,19L69,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> - <path - android:fillColor="#00000000" - android:pathData="M79,19L79,89" - android:strokeWidth="0.8" - android:strokeColor="#33FFFFFF" /> -</vector> diff --git a/labb1/app/src/main/res/drawable/ic_launcher_foreground.xml b/labb1/app/src/main/res/drawable/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d11462a4b96669193de13a711a3a36220a0..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/drawable/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ -<vector xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:aapt="http://schemas.android.com/aapt" - android:width="108dp" - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> - <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> - <aapt:attr name="android:fillColor"> - <gradient - android:endX="85.84757" - android:endY="92.4963" - android:startX="42.9492" - android:startY="49.59793" - android:type="linear"> - <item - android:color="#44000000" - android:offset="0.0" /> - <item - android:color="#00000000" - android:offset="1.0" /> - </gradient> - </aapt:attr> - </path> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> -</vector> \ No newline at end of file diff --git a/labb1/app/src/main/res/layout/activity_main.xml b/labb1/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index 48c45429cb70450387d031bbca56216ec7c3cdb4..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout 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=".MainActivity" - android:orientation="vertical"> - - <EditText - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:id="@+id/input"> - </EditText> - - <ExpandableListView - android:id="@+id/listView" - android:layout_width="match_parent" - android:layout_height="wrap_content"> - </ExpandableListView> - -</LinearLayout> \ No newline at end of file diff --git a/labb1/app/src/main/res/layout/child_item.xml b/labb1/app/src/main/res/layout/child_item.xml deleted file mode 100644 index a62165035db8d56574e77cca785ca16ced819a9e..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/layout/child_item.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="match_parent" - android:layout_height="match_parent"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:id="@+id/child" - android:layout_weight="1" - android:text="Hello"> - </TextView> - -</LinearLayout> \ No newline at end of file diff --git a/labb1/app/src/main/res/layout/group_item.xml b/labb1/app/src/main/res/layout/group_item.xml deleted file mode 100644 index 3dfa2bc75606ae6dba9c447db8ac01ed09414671..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/layout/group_item.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="match_parent" - android:layout_height="match_parent"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:id="@+id/group" - android:paddingLeft="50dp" - android:text=""> - </TextView> -</LinearLayout> \ No newline at end of file diff --git a/labb1/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/labb1/app/src/main/res/mipmap-anydpi/ic_launcher.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/mipmap-anydpi/ic_launcher.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/labb1/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/labb1/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml deleted file mode 100644 index 6f3b755bf50c6b03d8714a9c6184705e6a08389f..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> - <background android:drawable="@drawable/ic_launcher_background" /> - <foreground android:drawable="@drawable/ic_launcher_foreground" /> - <monochrome android:drawable="@drawable/ic_launcher_foreground" /> -</adaptive-icon> \ No newline at end of file diff --git a/labb1/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/labb1/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index c209e78ecd372343283f4157dcfd918ec5165bb3..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/labb1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp deleted file mode 100644 index b2dfe3d1ba5cf3ee31b3ecc1ced89044a1f3b7a9..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/labb1/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 4f0f1d64e58ba64d180ce43ee13bf9a17835fbca..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/labb1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp deleted file mode 100644 index 62b611da081676d42f6c3f78a2c91e7bcedddedb..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/labb1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index 948a3070fe34c611c42c0d3ad3013a0dce358be0..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/labb1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp deleted file mode 100644 index 1b9a6956b3acdc11f40ce2bb3f6efbd845cc243f..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/labb1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index 28d4b77f9f036a47549d47db79c16788749dca10..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/labb1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9287f5083623b375139afb391af71cc533a7dd37..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/labb1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index aa7d6427e6fa1074b79ccd52ef67ac15c5637e85..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/labb1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/labb1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp deleted file mode 100644 index 9126ae37cbc3587421d6889eadd1d91fbf1994d4..0000000000000000000000000000000000000000 Binary files a/labb1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and /dev/null differ diff --git a/labb1/app/src/main/res/values-night/themes.xml b/labb1/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 38809b9411619f6e9062d44203c29befb95e8fee..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,7 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Labb1" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your dark theme here. --> - <!-- <item name="colorPrimary">@color/my_dark_primary</item> --> - </style> -</resources> \ No newline at end of file diff --git a/labb1/app/src/main/res/values/colors.xml b/labb1/app/src/main/res/values/colors.xml deleted file mode 100644 index c8524cd961d27b6695e755c6ef2d4d58cf38431e..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<resources> - <color name="black">#FF000000</color> - <color name="white">#FFFFFFFF</color> -</resources> \ No newline at end of file diff --git a/labb1/app/src/main/res/values/strings.xml b/labb1/app/src/main/res/values/strings.xml deleted file mode 100644 index f86be6c70b8b6d57f5686acd8c5e0b9e61a5f62e..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ -<resources> - <string name="app_name">labb1</string> -</resources> \ No newline at end of file diff --git a/labb1/app/src/main/res/values/themes.xml b/labb1/app/src/main/res/values/themes.xml deleted file mode 100644 index 4d69e7a5ce50a105cc8cfd73fa8a7197234a3a1c..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,9 +0,0 @@ -<resources xmlns:tools="http://schemas.android.com/tools"> - <!-- Base application theme. --> - <style name="Base.Theme.Labb1" parent="Theme.Material3.DayNight.NoActionBar"> - <!-- Customize your light theme here. --> - <!-- <item name="colorPrimary">@color/my_light_primary</item> --> - </style> - - <style name="Theme.Labb1" parent="Base.Theme.Labb1" /> -</resources> \ No newline at end of file diff --git a/labb1/app/src/main/res/xml/backup_rules.xml b/labb1/app/src/main/res/xml/backup_rules.xml deleted file mode 100644 index fa0f996d2c2a6bdd11f5371de4268c8389d6c720..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/xml/backup_rules.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample backup rules file; uncomment and customize as necessary. - See https://developer.android.com/guide/topics/data/autobackup - for details. - Note: This file is ignored for devices older that API 31 - See https://developer.android.com/about/versions/12/backup-restore ---> -<full-backup-content> - <!-- - <include domain="sharedpref" path="."/> - <exclude domain="sharedpref" path="device.xml"/> ---> -</full-backup-content> \ No newline at end of file diff --git a/labb1/app/src/main/res/xml/data_extraction_rules.xml b/labb1/app/src/main/res/xml/data_extraction_rules.xml deleted file mode 100644 index 9ee9997b0b4726e57c27b2f7b21462b604ff8a88..0000000000000000000000000000000000000000 --- a/labb1/app/src/main/res/xml/data_extraction_rules.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - Sample data extraction rules file; uncomment and customize as necessary. - See https://developer.android.com/about/versions/12/backup-restore#xml-changes - for details. ---> -<data-extraction-rules> - <cloud-backup> - <!-- TODO: Use <include> and <exclude> to control what is backed up. - <include .../> - <exclude .../> - --> - </cloud-backup> - <!-- - <device-transfer> - <include .../> - <exclude .../> - </device-transfer> - --> -</data-extraction-rules> \ No newline at end of file diff --git a/labb1/app/src/test/java/com/example/labb1/ExampleUnitTest.java b/labb1/app/src/test/java/com/example/labb1/ExampleUnitTest.java deleted file mode 100644 index d56f367d7c9efc50ef989c84f30178edd920b5ef..0000000000000000000000000000000000000000 --- a/labb1/app/src/test/java/com/example/labb1/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.example.labb1; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file diff --git a/labb1/build.gradle.kts b/labb1/build.gradle.kts deleted file mode 100644 index c21801c71b6929d946defe659f1774baf2d1fae3..0000000000000000000000000000000000000000 --- a/labb1/build.gradle.kts +++ /dev/null @@ -1,4 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -plugins { - id("com.android.application") version "8.1.2" apply false -} \ No newline at end of file diff --git a/labb1/gradle.properties b/labb1/gradle.properties deleted file mode 100644 index 3e927b11efbfe301c31c0a8e4d7e4acb829d631a..0000000000000000000000000000000000000000 --- a/labb1/gradle.properties +++ /dev/null @@ -1,21 +0,0 @@ -# Project-wide Gradle settings. -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Enables namespacing of each library's R class so that its R class includes only the -# resources declared in the library itself and none from the library's dependencies, -# thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true \ No newline at end of file diff --git a/labb1/gradle/wrapper/gradle-wrapper.jar b/labb1/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c023ec8b20f512888fe07c5bd3ff77bb8f..0000000000000000000000000000000000000000 Binary files a/labb1/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/labb1/gradle/wrapper/gradle-wrapper.properties b/labb1/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 96403c0f42b338610892a97ddc0ad6a332ee6ffc..0000000000000000000000000000000000000000 --- a/labb1/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Tue Dec 05 11:31:59 CET 2023 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/labb1/gradlew b/labb1/gradlew deleted file mode 100644 index 4f906e0c811fc9e230eb44819f509cd0627f2600..0000000000000000000000000000000000000000 --- a/labb1/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" diff --git a/labb1/gradlew.bat b/labb1/gradlew.bat deleted file mode 100644 index 107acd32c4e687021ef32db511e8a206129b88ec..0000000000000000000000000000000000000000 --- a/labb1/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/labb1/settings.gradle.kts b/labb1/settings.gradle.kts deleted file mode 100644 index 0a4feb6233acaa989ab2ec2151f7396458832a11..0000000000000000000000000000000000000000 --- a/labb1/settings.gradle.kts +++ /dev/null @@ -1,18 +0,0 @@ -pluginManagement { - repositories { - google() - mavenCentral() - gradlePluginPortal() - } -} -dependencyResolutionManagement { - repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) - repositories { - google() - mavenCentral() - } -} - -rootProject.name = "labb1" -include(":app") - \ No newline at end of file