From 11818054364b6248be8ff092d2914598f1081dc5 Mon Sep 17 00:00:00 2001 From: Przemyslaw Date: Thu, 18 Apr 2024 18:46:24 +0200 Subject: Init --- android/SameGame/.gitignore | 15 + android/SameGame/app/.gitignore | 1 + android/SameGame/app/Changelog.txt | 15 + android/SameGame/app/build.gradle.kts | 71 +++++ android/SameGame/app/proguard-rules.pro | 21 ++ .../example/samegame/ExampleInstrumentedTest.kt | 24 ++ android/SameGame/app/src/main/AndroidManifest.xml | 29 ++ .../app/src/main/ic_launcher-playstore.png | Bin 0 -> 3838 bytes .../src/main/java/com/example/samegame/Box.java | 317 +++++++++++++++++++++ .../java/com/example/samegame/GridRVAdapter.kt | 79 +++++ .../main/java/com/example/samegame/MainActivity.kt | 290 +++++++++++++++++++ .../java/com/example/samegame/ui/theme/Color.kt | 11 + .../java/com/example/samegame/ui/theme/Theme.kt | 70 +++++ .../java/com/example/samegame/ui/theme/Type.kt | 34 +++ .../main/res/drawable/ic_launcher_background.xml | 74 +++++ .../main/res/drawable/ic_launcher_foreground.xml | 30 ++ .../app/src/main/res/drawable/my_image.xml | 15 + .../app/src/main/res/layout/activity_main.xml | 18 ++ .../app/src/main/res/layout/gridview_item.xml | 48 ++++ android/SameGame/app/src/main/res/layout/row.xml | 34 +++ .../src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../app/src/main/res/mipmap-hdpi/ic_launcher.webp | Bin 0 -> 870 bytes .../res/mipmap-hdpi/ic_launcher_foreground.webp | Bin 0 -> 356 bytes .../main/res/mipmap-hdpi/ic_launcher_round.webp | Bin 0 -> 2456 bytes .../app/src/main/res/mipmap-mdpi/ic_launcher.webp | Bin 0 -> 854 bytes .../res/mipmap-mdpi/ic_launcher_foreground.webp | Bin 0 -> 304 bytes .../main/res/mipmap-mdpi/ic_launcher_round.webp | Bin 0 -> 1566 bytes .../app/src/main/res/mipmap-xhdpi/ic_launcher.webp | Bin 0 -> 1158 bytes .../res/mipmap-xhdpi/ic_launcher_foreground.webp | Bin 0 -> 402 bytes .../main/res/mipmap-xhdpi/ic_launcher_round.webp | Bin 0 -> 3394 bytes .../src/main/res/mipmap-xxhdpi/ic_launcher.webp | Bin 0 -> 1602 bytes .../res/mipmap-xxhdpi/ic_launcher_foreground.webp | Bin 0 -> 438 bytes .../main/res/mipmap-xxhdpi/ic_launcher_round.webp | Bin 0 -> 5134 bytes .../src/main/res/mipmap-xxxhdpi/ic_launcher.webp | Bin 0 -> 2128 bytes .../res/mipmap-xxxhdpi/ic_launcher_foreground.webp | Bin 0 -> 476 bytes .../main/res/mipmap-xxxhdpi/ic_launcher_round.webp | Bin 0 -> 7228 bytes .../SameGame/app/src/main/res/values/colors.xml | 11 + .../SameGame/app/src/main/res/values/string.xml | 4 + .../SameGame/app/src/main/res/values/strings.xml | 14 + .../SameGame/app/src/main/res/values/themes.xml | 5 + .../SameGame/app/src/main/res/xml/backup_rules.xml | 13 + .../app/src/main/res/xml/data_extraction_rules.xml | 19 ++ .../java/com/example/samegame/ExampleUnitTest.kt | 17 ++ android/SameGame/build.gradle.kts | 5 + android/SameGame/gradle.properties | 23 ++ android/SameGame/gradle/libs.versions.toml | 31 ++ android/SameGame/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 59203 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + android/SameGame/gradlew | 185 ++++++++++++ android/SameGame/gradlew.bat | 89 ++++++ android/SameGame/settings.gradle.kts | 24 ++ 52 files changed, 1652 insertions(+) create mode 100644 android/SameGame/.gitignore create mode 100644 android/SameGame/app/.gitignore create mode 100644 android/SameGame/app/Changelog.txt create mode 100644 android/SameGame/app/build.gradle.kts create mode 100644 android/SameGame/app/proguard-rules.pro create mode 100644 android/SameGame/app/src/androidTest/java/com/example/samegame/ExampleInstrumentedTest.kt create mode 100644 android/SameGame/app/src/main/AndroidManifest.xml create mode 100644 android/SameGame/app/src/main/ic_launcher-playstore.png create mode 100644 android/SameGame/app/src/main/java/com/example/samegame/Box.java create mode 100644 android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt create mode 100644 android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt create mode 100644 android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt create mode 100644 android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt create mode 100644 android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt create mode 100644 android/SameGame/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 android/SameGame/app/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 android/SameGame/app/src/main/res/drawable/my_image.xml create mode 100644 android/SameGame/app/src/main/res/layout/activity_main.xml create mode 100644 android/SameGame/app/src/main/res/layout/gridview_item.xml create mode 100644 android/SameGame/app/src/main/res/layout/row.xml create mode 100644 android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp create mode 100644 android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp create mode 100644 android/SameGame/app/src/main/res/values/colors.xml create mode 100644 android/SameGame/app/src/main/res/values/string.xml create mode 100644 android/SameGame/app/src/main/res/values/strings.xml create mode 100644 android/SameGame/app/src/main/res/values/themes.xml create mode 100644 android/SameGame/app/src/main/res/xml/backup_rules.xml create mode 100644 android/SameGame/app/src/main/res/xml/data_extraction_rules.xml create mode 100644 android/SameGame/app/src/test/java/com/example/samegame/ExampleUnitTest.kt create mode 100644 android/SameGame/build.gradle.kts create mode 100644 android/SameGame/gradle.properties create mode 100644 android/SameGame/gradle/libs.versions.toml create mode 100644 android/SameGame/gradle/wrapper/gradle-wrapper.jar create mode 100644 android/SameGame/gradle/wrapper/gradle-wrapper.properties create mode 100644 android/SameGame/gradlew create mode 100644 android/SameGame/gradlew.bat create mode 100644 android/SameGame/settings.gradle.kts (limited to 'android/SameGame') diff --git a/android/SameGame/.gitignore b/android/SameGame/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/android/SameGame/.gitignore @@ -0,0 +1,15 @@ +*.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/android/SameGame/app/.gitignore b/android/SameGame/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/android/SameGame/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/android/SameGame/app/Changelog.txt b/android/SameGame/app/Changelog.txt new file mode 100644 index 0000000..aefe426 --- /dev/null +++ b/android/SameGame/app/Changelog.txt @@ -0,0 +1,15 @@ +0.240327-0 - Elementy przesuwane są prawidłowo, jednak usuwanie duzej ilości elementów, potrfi wyłączyć aplikację +0.240325-3 - Usunięcie notyfikacji, 'listIndex' zbiera za dużo indeksów, nie wiem skąd bierze nadmiar +0.240325-2 - Zmaina ikony +0.240325-1 - Nie liczy bialych pól w funkcji 'like', już tak nie zwalnia, jednak nie mozna się spieszyć z klikaniem +0.240325-0 - Poprawinie kolejności przy odświeżąniu GRidView +0.240324-1 - Usuwa od czterech do max ośmiu razy, później się zawiesza +0.240324-0 - Usuwa elemety z kolumien, jednak potrafi się wyłożyć (gdy wszystkie kolumny są białe ?) +0.240323-0 - Usuwa elementy z prawej strony, zdarza się że usunie nadmiar elementów. Aplikacja potrafi się zawiesić i wyłączyć +0.240322-2 - Reimplementacja 'blank' - dodanie 'toLeft' jednak najpierw należy dodać funkcję sortującą malejąco +0.240322-1 - Dodanie funkcji 'blank' kasującej kolor elementu +0.240322-0 - Rozpoznaje "duety" +0.240321-1 - Rozpoznaje łańcuchy kolorów na siatce - usuwa duplikaty oraz sortuje lańcuchy +0.240321-0 - Wyświetla pięcio kolorową siatkę +0.240320-4 - Wyświetla jedno kolorową siatkę +0.240319-0 - Inicjacja \ No newline at end of file diff --git a/android/SameGame/app/build.gradle.kts b/android/SameGame/app/build.gradle.kts new file mode 100644 index 0000000..f5be856 --- /dev/null +++ b/android/SameGame/app/build.gradle.kts @@ -0,0 +1,71 @@ +plugins { + alias(libs.plugins.androidApplication) + alias(libs.plugins.jetbrainsKotlinAndroid) +} + +android { + namespace = "com.example.samegame" + compileSdk = 34 + + defaultConfig { + applicationId = "com.example.samegame" + minSdk = 24 + targetSdk = 34 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } + buildFeatures { + compose = true + } + composeOptions { + kotlinCompilerExtensionVersion = "1.5.1" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } +} + +dependencies { + + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.lifecycle.runtime.ktx) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation("androidx.cardview:cardview:1.0.0") + implementation("androidx.constraintlayout:constraintlayout:2.2.0-alpha13") + // To use constraintlayout in compose + implementation("androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13") + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) + androidTestImplementation(platform(libs.androidx.compose.bom)) + androidTestImplementation(libs.androidx.ui.test.junit4) + debugImplementation(libs.androidx.ui.tooling) + debugImplementation(libs.androidx.ui.test.manifest) + +} \ No newline at end of file diff --git a/android/SameGame/app/proguard-rules.pro b/android/SameGame/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/android/SameGame/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# 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/android/SameGame/app/src/androidTest/java/com/example/samegame/ExampleInstrumentedTest.kt b/android/SameGame/app/src/androidTest/java/com/example/samegame/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..8e9c9b3 --- /dev/null +++ b/android/SameGame/app/src/androidTest/java/com/example/samegame/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.samegame + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.example.samegame", appContext.packageName) + } +} \ No newline at end of file diff --git a/android/SameGame/app/src/main/AndroidManifest.xml b/android/SameGame/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..fc3f30e --- /dev/null +++ b/android/SameGame/app/src/main/AndroidManifest.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/ic_launcher-playstore.png b/android/SameGame/app/src/main/ic_launcher-playstore.png new file mode 100644 index 0000000..3a978c4 Binary files /dev/null and b/android/SameGame/app/src/main/ic_launcher-playstore.png differ diff --git a/android/SameGame/app/src/main/java/com/example/samegame/Box.java b/android/SameGame/app/src/main/java/com/example/samegame/Box.java new file mode 100644 index 0000000..6bab739 --- /dev/null +++ b/android/SameGame/app/src/main/java/com/example/samegame/Box.java @@ -0,0 +1,317 @@ +/* +Same Game - My first application built in Kotlin +date: 19-III-2024 +code: Przemyslaw R. Pietraszczyk +license: GPL v3 +IDE: Android Studio Iguana +*/ +package com.example.samegame; + +import java.util.*; +import java.lang.*; + +class Box { + int index; + int groupIndex; + String color; + int x, y; + boolean visit; + public List groupList = new ArrayList(); + public List listIndex = new ArrayList(); + + public int value; // czy kolor (0) czy bialy (1) + public int resource; + public Box() { + + visit = false; + value = 0; + } + + public void setIndex(int n) { + int index = n; + } + + public void setGroupIndex(int n) { + groupIndex = n; + } + + public void setColorName(String c) { + color = c; + } + + public void setVelocity(int _x, int _y) { + x = _x; + y = _y; + } + + public int getGroupIndex() { + return groupIndex; + } + + public String getColor() { + return color; + } + + public int getVelocityY() { + return y; + } + + public int getVelocityX() { + return x; + } + + public Box get() { + return this; + } + + + public void like(String color, Box [][] squares, int y, int x, int origy, int origx)throws Exception, StackOverflowError { + + if ( squares[y][x].getColor() != "white") { + if (squares[y][x].getColor().equals(color)) { + if (y >= 1) { + if (squares[y - 1][x].visit == false) { + squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex())); + squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex()); + + //like(color, squares, y-1, x, origy, origx); + try { + like(color, squares, y - 1, x, origy, origx); + //intelligence.add("3"); + } catch (StackOverflowError s) { + like(color, squares, y - 1, x, origy, origx); + // intelligence.add("4"); + } + } + squares[y][x].visit = true; + } + if (x >= 1) { + if (squares[y][x - 1].visit == false) { + squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex())); + squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex()); + + //like(color, squares, y, x-1 , origy, origx); + try { + like(color, squares, y, x - 1, origy, origx); + //intelligence.add("3"); + } catch (StackOverflowError s) { + like(color, squares, y, x - 1, origy, origx); + // intelligence.add("4"); + } + } + squares[y][x].visit = true; + } + + if (y < 8) { + if (squares[y + 1][x].visit == false) { + squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex())); + squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex()); + + //like(color, squares, y+1, x, origy, origx); + try { + like(color, squares, y + 1, x, origy, origx); + //intelligence.add("3"); + } catch (StackOverflowError s) { + like(color, squares, y + 1, x, origy, origx); + // intelligence.add("4"); + } + } + squares[y][x].visit = true; + } + if (x < 5) { + if (squares[y][x + 1].visit == false) { + squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex())); + squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex()); + + //like(color, squares, y, x+1 , origy, origx); + try { + like(color, squares, y, x + 1, origy, origx); + //intelligence.add("3"); + } catch (StackOverflowError s) { + like(color, squares, y, x + 1, origy, origx); + //intelligence.add("4"); + } + } + squares[y][x].visit = true; + } + squares[y][x].visit = false; + } + } + } + + // Mozliwe ze wogole nie potrzebne + public void blank() { + this.setColorName("white"); + this.value = 1; + + } + + public void toUp(Box [][] squares, int y, int x) { + + int n = 9; + String temp; + int v; // = new Box(); + for(int i=0; i < n; i++){ + for(int j=1; j < (n-i); j++){ + //if(squares[y][j-1].getColor() != squares[y][j].getColor() && squares[y][j].getColor() == "white"){ + //if(squares[y][j-1].getColor() != squares[y][j].getColor()){ + if(squares[j-1][x].value > squares[j][x].value) { + + //swap elements + temp = squares[j-1][x].getColor(); + v = squares[j-1][x].value; + squares[j-1][x].setColorName(squares[j][x].getColor()); + squares[j-1][x].value = squares[j][x].value; + squares[j][x].setColorName(temp); + squares[j][x].value = v; + } + + } + } + } + + public void toLeft(Box [][] squares, int y, int x) { + + int n = 6; + String temp; + int v; // = new Box(); + for(int i=0; i < n; i++){ + for(int j=1; j < (n-i); j++){ + //if(squares[y][j-1].getColor() != squares[y][j].getColor() && squares[y][j].getColor() == "white"){ + //if(squares[y][j-1].getColor() != squares[y][j].getColor()){ + if(squares[y][j-1].value > squares[y][j].value) { + + //swap elements + temp = squares[y][j-1].getColor(); + v = squares[y][j-1].value; + squares[y][j-1].setColorName(squares[y][j].getColor()); + squares[y][j-1].value = squares[y][j].value; + squares[y][j].setColorName(temp); + squares[y][j].value = v; + } + + } + } + } + + public void removeDuplicates() { + + List tmp = new ArrayList (); + + for(String item:this.groupList){ + boolean find = false; + for (String t:tmp) { + if (t.equals(item)){ + find = true; + } + } + if (find == false) { + tmp.add(item); + } + } + this.groupList.clear(); + this.groupList = tmp; + } + + public void removeDuplicatesIndex() { + + List tmp = new ArrayList (); + + for(Integer item:this.listIndex){ + boolean find = false; + for (Integer t:tmp) { + if (t.equals(item)){ + find = true; + } + } + if (find == false) { + tmp.add(item); + } + } + this.listIndex.clear(); + this.listIndex = tmp; + } + + public void clearVisit(){ + this.visit = false; + } + + public void sort() { + + // Zbyt nowe dopiero od API 24 + //String[] strings = b.groupList.toArray(String[]::new); + String[] strings = new String[this.groupList.size()]; + for (int i = 0; i < this.groupList.size(); i++) { + strings[i] = this.groupList.get(i); + } + + Integer[] numbers = new Integer[strings.length]; + for(int i = 0;i < strings.length;i++) + { + try + { + numbers[i] = Integer.parseInt(strings[i]); + } + catch (NumberFormatException nfe) + { + numbers[i] = null; + } + } + + Arrays.sort(numbers, Collections.reverseOrder()); + + /* + int n = numbers.length; + int temp = 0; + for(int i=0; i < n; i++){ + for(int j=1; j < (n-i); j++){ + if(numbers[j-1] > numbers[j]){ + //swap elements + temp = numbers[j-1]; + numbers[j-1] = numbers[j]; + numbers[j] = temp; + } + + } + } + */ + + this.groupList.clear(); + for(int i = 0;i < numbers.length;i++) + { + try + { + this.groupList.add(Integer.toString(numbers[i])); + } + catch (NumberFormatException nfe) + { + //numbers[i] = null; + } + } + + } + + public void sortReverseIndex() { + // Zbyt nowe dopiero od API 24 + //String[] strings = b.groupList.toArray(String[]::new); + Integer[] integers = new Integer[this.listIndex.size()]; + for (int i = 0; i < this.listIndex.size(); i++) { + integers[i] = this.listIndex.get(i); + } + + Arrays.sort(integers, Collections.reverseOrder()); + + this.listIndex.clear(); + for(int i = 0;i < integers.length;i++) + { + try + { + this.listIndex.add(integers[i]); + } + catch (NumberFormatException nfe) + { + //numbers[i] = null; + } + } + } +} \ No newline at end of file diff --git a/android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt b/android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt new file mode 100644 index 0000000..fd4c993 --- /dev/null +++ b/android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt @@ -0,0 +1,79 @@ +/* +Same Game - My first application built in Kotlin +date: 19-III-2024 +code: Przemyslaw R. Pietraszczyk +license: GPL v3 +IDE: Android Studio Iguana +*/ + +package com.example.samegame + +import android.content.Context +import android.view.LayoutInflater +import android.view.View +import android.view.ViewGroup +import android.widget.BaseAdapter +import android.widget.ImageView +import android.widget.TextView + +// on below line we are creating an +// adapter class for our grid view. +internal class GridRVAdapter( + // on below line we are creating two + // variables for course list and context + private val courseList: List, + private val context: Context +) : + BaseAdapter() { + // in base adapter class we are creating variables + // for layout inflater, course image view and course text view. + private var layoutInflater: LayoutInflater? = null + private lateinit var courseTV: TextView + private lateinit var courseIV: ImageView + + // below method is use to return the count of course list + override fun getCount(): Int { + return courseList.size + } + + // below function is use to return the item of grid view. + override fun getItem(position: Int): Any? { + return null + } + + // below function is use to return item id of grid view. + override fun getItemId(position: Int): Long { + return 0 + } + + // in below function we are getting individual item of grid view. + override fun getView(position: Int, convertView: View?, parent: ViewGroup?): View? { + var convertView = convertView + // on blow line we are checking if layout inflater + // is null, if it is null we are initializing it. + if (layoutInflater == null) { + layoutInflater = + context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater + } + // on the below line we are checking if convert view is null. + // If it is null we are initializing it. + if (convertView == null) { + // on below line we are passing the layout file + // which we have to inflate for each item of grid view. + convertView = layoutInflater!!.inflate(R.layout.row, null) + } + // on below line we are initializing our course image view + // and course text view with their ids. + // trzeba zainicjowac + //courseIV = convertView!!.findViewById(R.id.idIVCourse) + // Nie wyswietla ikony + ///courseIV.setImageResource(courseList.get(position).courseImg) + // on below line we are setting text in our course text view. + courseTV = convertView!!.findViewById(R.id.idTVCourse) + courseTV.setText(courseList.get(position).courseName) + courseTV.setBackgroundColor(courseList.get(position).courseImg); + + // at last we are returning our convert view. + return convertView + } +} diff --git a/android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt b/android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt new file mode 100644 index 0000000..331357a --- /dev/null +++ b/android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt @@ -0,0 +1,290 @@ +/* +Same Game - My first application built in Kotlin +date: 19-III-2024 +code: Przemyslaw R. Pietraszczyk +license: GPL v3 +IDE: Android Studio Iguana +*/ + +package com.example.samegame + +//import android.R + +//import android.content.Intent + +//import android.R + +//import android.R +import android.os.Bundle +import android.widget.AdapterView +import android.widget.GridView +import android.widget.Toast +import androidx.activity.ComponentActivity +import android.view.LayoutInflater +import java.util.* + + +//import com.example.samegame.R + + +private inline fun matrixOfFields(n: Int, m: Int) = Array(n) { arrayOfNulls(m) } +//private var arrayMap = matrixOfFields(9, 6) // example arguments +//private var courseList: List = TODO() + +data class GridViewModal( + // we are creating a modal class with 2 member + // one is course name as string and + // other course img as int. + val courseName: String, + val courseImg: Int, + val resource: Int, + val index: Int +) +class MainActivity : ComponentActivity() { + + //override fun onCreate(savedInstanceState: Bundle?) { + // super.onCreate(savedInstanceState) + // setContentView(layout.activity_main) +/* + val bitmap: Bitmap = Bitmap.createBitmap(700, 1000, Bitmap.Config.ARGB_8888) + val canvas: Canvas = Canvas(bitmap) + val footingpaint = Paint () + footingpaint.setARGB (255, 128, 54, 67) + + var shapeDrawable: ShapeDrawable + // oval positions + var left = 50 + var top = 50 + var right = 200 + var bottom = 200 + + // draw rectangle shape to canvas + shapeDrawable = ShapeDrawable(RectShape()) + shapeDrawable.setBounds( left, top, right, bottom) + shapeDrawable.getPaint().setColor(Color.parseColor("#009944")) + shapeDrawable.draw(canvas) + + + // now bitmap holds the updated pixels + // val img = findViewById(R.id.imageV) as ImageView + + // set bitmap as background to ImageView + //R.id.imageV.background = BitmapDrawable(getResources(), bitmap) + + //shapeDrawable.setBackground(BitmapDrawable(resources, BIMAP)) +*/ + //val img = findViewById(R.id.imageV) as ImageView + + + + + + + // on below line we are creating + // variables for grid view and course list + lateinit var courseGRV: GridView + lateinit var courseList: List + //private inline fun matrixOfFields(n: Int, m: Int) = Array(n) { arrayOfNulls(m) } + //private fun matrixOfFields(n: Int, m: Int) = Array(n) { arrayOfNulls(m) } + + private var arrayMap = matrixOfFields(9, 6) // example arguments + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContentView(R.layout.activity_main) + + // initializing variables of grid view with their ids. + courseGRV = findViewById(R.id.idGRV) + courseList = ArrayList() + + var listOfColors = listOf("blue","green", "magenta", "navy", "orange", "yellow") + var k = 0 + for (y: Int in 0..8) + { + for (x: Int in 0..5) + { + val rnds = (0..2).random() + arrayMap[y][x] = Box() + arrayMap[y][x]!!.setColorName(listOfColors[rnds]) // 9 + arrayMap[y][x]!!.setGroupIndex(k++); + arrayMap[y][x]!!.setVelocity(y, x); + } + } + for (y: Int in 0..8) + { + for (x: Int in 0..5) + { + arrayMap[y][x]!!.like(arrayMap[y][x]!!.getColor(), arrayMap, y, x, y, x); + arrayMap[y][x]!!.clearVisit() + + arrayMap[y][x]!!.removeDuplicates() + arrayMap[y][x]!!.sort() // also reverse + + arrayMap[y][x]!!.removeDuplicatesIndex() + arrayMap[y][x]!!.sortReverseIndex() + + + arrayMap[y][x]!!.resource = this.resources.getIdentifier(arrayMap[y][x]!!.getColor(), "color", this.packageName) + //courseList = courseList + GridViewModal("czwarty", R.mipmap.ic_launcher) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.groupList.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.getColor(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.listIndex.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + courseList = courseList + GridViewModal(arrayMap[y][x]!!.getGroupIndex().toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + + } + } + // on below line we are initializing our course adapter + // and passing course list and context. + var courseAdapter = GridRVAdapter(courseList = courseList, this@MainActivity) + + // on below line we are setting adapter to our grid view. + courseGRV.adapter = courseAdapter + + // on below line we are adding on item + // click listener for our grid view. + courseGRV.onItemClickListener = AdapterView.OnItemClickListener { _, _, position, _ -> + // nie idzie tego użyć w osobnej fukcji, replikujw arrayMap + var text: String + val y: Int = position / 6 + val x: Int = position % 6 + text = "Shit" + val color: String = arrayMap[y][x]!!.getColor() + + if (y >= 1) { + val c: String = arrayMap[y-1][x]!!.getColor() + if (color == c) text = "bingo !" + } + if (y < 8) { + val c: String = arrayMap[y+1][x]!!.getColor() + if (color == c) text = "bingo !" + } + if (x >= 1) { + val c: String = arrayMap[y][x-1]!!.getColor() + if (color == c) text = "bingo !" + } + if (x < 5) { + val c: String = arrayMap[y][x+1]!!.getColor() + if (color == c) text = "bingo !" + } + /* + Toast.makeText( + applicationContext, courseList[position].courseName + " selected", + //applicationContext, text, + Toast.LENGTH_SHORT + ).show() + */ + + if (text != "Shit") { + for (l in arrayMap[y][x]!!.listIndex) { + val i: Int = l / 6 + val j: Int = l % 6 + arrayMap[i][j]!!.blank() + } + println("Left lastIndex: "+arrayMap[y][x]!!.listIndex.toString()) + // Przesunięcie w lerwo + for (l in arrayMap[y][x]!!.listIndex) { + val i: Int = l / 6 + val j: Int = l % 6 + arrayMap[i][j]!!.toLeft(arrayMap, i, j) + } + + + // Usuwanie elementow + + for (y: Int in 0..8) { + for (x: Int in 0..5) { + arrayMap[y][x]!!.groupList.clear() + arrayMap[y][x]!!.listIndex.clear() + } + } + + courseList = ArrayList() + for (y: Int in 0..8) + { + for (x: Int in 0..5) + { + arrayMap[y][x]!!.like(arrayMap[y][x]!!.getColor(), arrayMap, y, x, y, x); + arrayMap[y][x]!!.clearVisit() + + arrayMap[y][x]!!.removeDuplicates() + arrayMap[y][x]!!.sort() + arrayMap[y][x]!!.removeDuplicatesIndex() + arrayMap[y][x]!!.sortReverseIndex() + + + arrayMap[y][x]!!.resource = this.resources.getIdentifier(arrayMap[y][x]!!.getColor(), "color", this.packageName) + //courseList = courseList + GridViewModal("czwarty", R.mipmap.ic_launcher) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.groupList.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.getColor(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.listIndex.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + courseList = courseList + GridViewModal(arrayMap[y][x]!!.getGroupIndex().toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + + } + + } + + + + //courseAdapter = GridRVAdapter(courseList = courseList, this@MainActivity) + //courseGRV.invalidateViews(); + //courseGRV.setAdapter(courseAdapter); + //courseAdapter.notifyDataSetChanged() + + + + + + for (i: Int in 0..8) + for (j: Int in 0..5) + arrayMap[i][j]!!.toUp(arrayMap, i, j) + + // czyszczenie + + for (y: Int in 0..8) { + for (x: Int in 0..5) { + arrayMap[y][x]!!.groupList.clear() + arrayMap[y][x]!!.listIndex.clear() + } + } + + courseList = ArrayList() + for (y: Int in 0..8) + { + for (x: Int in 0..5) + { + arrayMap[y][x]!!.like(arrayMap[y][x]!!.getColor(), arrayMap, y, x, y, x); + arrayMap[y][x]!!.clearVisit() + + arrayMap[y][x]!!.removeDuplicates() + arrayMap[y][x]!!.sort() + arrayMap[y][x]!!.removeDuplicatesIndex() + arrayMap[y][x]!!.sortReverseIndex() + + + arrayMap[y][x]!!.resource = this.resources.getIdentifier(arrayMap[y][x]!!.getColor(), "color", this.packageName) + //courseList = courseList + GridViewModal("czwarty", R.mipmap.ic_launcher) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.groupList.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.getColor(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + //courseList = courseList + GridViewModal(arrayMap[y][x]!!.listIndex.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + courseList = courseList + GridViewModal(arrayMap[y][x]!!.getGroupIndex().toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() ) + + } + + } + + courseAdapter = GridRVAdapter(courseList = courseList, this@MainActivity) + courseGRV.invalidateViews(); + courseGRV.setAdapter(courseAdapter); + courseAdapter.notifyDataSetChanged() + + + + // on below line we are setting adapter to our grid view. + // courseGRV.adapter = courseAdapter + + } + + } + + } +} diff --git a/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt new file mode 100644 index 0000000..2510091 --- /dev/null +++ b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt @@ -0,0 +1,11 @@ +package com.example.samegame.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple80 = Color(0xFFD0BCFF) +val PurpleGrey80 = Color(0xFFCCC2DC) +val Pink80 = Color(0xFFEFB8C8) + +val Purple40 = Color(0xFF6650a4) +val PurpleGrey40 = Color(0xFF625b71) +val Pink40 = Color(0xFF7D5260) \ No newline at end of file diff --git a/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt new file mode 100644 index 0000000..6a5d879 --- /dev/null +++ b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt @@ -0,0 +1,70 @@ +package com.example.samegame.ui.theme + +import android.app.Activity +import android.os.Build +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.dynamicDarkColorScheme +import androidx.compose.material3.dynamicLightColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable +import androidx.compose.runtime.SideEffect +import androidx.compose.ui.graphics.toArgb +import androidx.compose.ui.platform.LocalContext +import androidx.compose.ui.platform.LocalView +import androidx.core.view.WindowCompat + +private val DarkColorScheme = darkColorScheme( + primary = Purple80, + secondary = PurpleGrey80, + tertiary = Pink80 +) + +private val LightColorScheme = lightColorScheme( + primary = Purple40, + secondary = PurpleGrey40, + tertiary = Pink40 + + /* Other default colors to override + background = Color(0xFFFFFBFE), + surface = Color(0xFFFFFBFE), + onPrimary = Color.White, + onSecondary = Color.White, + onTertiary = Color.White, + onBackground = Color(0xFF1C1B1F), + onSurface = Color(0xFF1C1B1F), + */ +) + +@Composable +fun SameGameTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + // Dynamic color is available on Android 12+ + dynamicColor: Boolean = true, + content: @Composable () -> Unit +) { + val colorScheme = when { + dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> { + val context = LocalContext.current + if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context) + } + + darkTheme -> DarkColorScheme + else -> LightColorScheme + } + val view = LocalView.current + if (!view.isInEditMode) { + SideEffect { + val window = (view.context as Activity).window + window.statusBarColor = colorScheme.primary.toArgb() + WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars = darkTheme + } + } + + MaterialTheme( + colorScheme = colorScheme, + typography = Typography, + content = content + ) +} \ No newline at end of file diff --git a/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt new file mode 100644 index 0000000..eefeeae --- /dev/null +++ b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt @@ -0,0 +1,34 @@ +package com.example.samegame.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +// Set of Material typography styles to start with +val Typography = Typography( + bodyLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ) + /* Other default text styles to override + titleLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 22.sp, + lineHeight = 28.sp, + letterSpacing = 0.sp + ), + labelSmall = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) + */ +) \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/drawable/ic_launcher_background.xml b/android/SameGame/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..953ca56 --- /dev/null +++ b/android/SameGame/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/SameGame/app/src/main/res/drawable/ic_launcher_foreground.xml b/android/SameGame/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/android/SameGame/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/drawable/my_image.xml b/android/SameGame/app/src/main/res/drawable/my_image.xml new file mode 100644 index 0000000..83cbc16 --- /dev/null +++ b/android/SameGame/app/src/main/res/drawable/my_image.xml @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/layout/activity_main.xml b/android/SameGame/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..60e93f9 --- /dev/null +++ b/android/SameGame/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,18 @@ + + + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/layout/gridview_item.xml b/android/SameGame/app/src/main/res/layout/gridview_item.xml new file mode 100644 index 0000000..42b5e45 --- /dev/null +++ b/android/SameGame/app/src/main/res/layout/gridview_item.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/layout/row.xml b/android/SameGame/app/src/main/res/layout/row.xml new file mode 100644 index 0000000..08c1896 --- /dev/null +++ b/android/SameGame/app/src/main/res/layout/row.xml @@ -0,0 +1,34 @@ + + + + + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..fdd632e --- /dev/null +++ b/android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..fdd632e --- /dev/null +++ b/android/SameGame/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..31329f1 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp b/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..b624c4b Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..34d648f Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..c33fa57 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp b/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..e3b8d9e Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..4d92e62 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..143b4a1 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp b/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..e1ea7a3 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..abc1481 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..809bcfc Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp b/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..c121dc0 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..51398c2 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..fc78684 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp b/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..c6c796a Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp differ diff --git a/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..c6ae7d3 Binary files /dev/null and b/android/SameGame/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/android/SameGame/app/src/main/res/values/colors.xml b/android/SameGame/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..7b6621e --- /dev/null +++ b/android/SameGame/app/src/main/res/values/colors.xml @@ -0,0 +1,11 @@ + + + #FF0CEBF8 + #FF11eE23 + #FFF41A6C + #FF100BCC + #FFE88216 + #FFE1E111 + #FFFFFFFF + #FF000000 + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/values/string.xml b/android/SameGame/app/src/main/res/values/string.xml new file mode 100644 index 0000000..2dad5e4 --- /dev/null +++ b/android/SameGame/app/src/main/res/values/string.xml @@ -0,0 +1,4 @@ + + +text_string + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/values/strings.xml b/android/SameGame/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..e9d03d4 --- /dev/null +++ b/android/SameGame/app/src/main/res/values/strings.xml @@ -0,0 +1,14 @@ + + Same Game + Choice + + \ No newline at end of file diff --git a/android/SameGame/app/src/main/res/values/themes.xml b/android/SameGame/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..47d9663 --- /dev/null +++ b/android/SameGame/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +