From fe364094ef977891bd6b4ef42aba1bef1c9520ec Mon Sep 17 00:00:00 2001 From: "pro.boooooo" Date: Sat, 1 Apr 2023 01:24:14 +0200 Subject: [PATCH] $ --- app/.gitignore (copy 1) | 1 - app/build (copy 1).gradle | 40 - app/proguard-rules (copy 1).pro | 21 - .../ExampleInstrumentedTest (copy 1).java | 26 - app/src/main/AndroidManifest (copy 1).xml | 30 - .../ic_launcher_foreground (copy 1).xml | 30 - .../ic_launcher_background (copy 1).xml | 170 ---- app/src/main/res/layout/game (copy 1).xml | 869 ------------------ app/src/main/res/layout/menu (copy 1).xml | 47 - .../ic_launcher (copy 1).xml | 5 - .../ic_launcher_round (copy 1).xml | 5 - .../ic_launcher (copy 1).xml | 6 - .../res/mipmap-hdpi/ic_launcher (copy 1).webp | Bin 1404 -> 0 bytes .../ic_launcher_round (copy 1).webp | Bin 2898 -> 0 bytes .../res/mipmap-mdpi/ic_launcher (copy 1).webp | Bin 982 -> 0 bytes .../ic_launcher_round (copy 1).webp | Bin 1772 -> 0 bytes .../mipmap-xhdpi/ic_launcher (copy 1).webp | Bin 1900 -> 0 bytes .../ic_launcher_round (copy 1).webp | Bin 3918 -> 0 bytes .../mipmap-xxhdpi/ic_launcher (copy 1).webp | Bin 2884 -> 0 bytes .../ic_launcher_round (copy 1).webp | Bin 5914 -> 0 bytes .../mipmap-xxxhdpi/ic_launcher (copy 1).webp | Bin 3844 -> 0 bytes .../ic_launcher_round (copy 1).webp | Bin 7778 -> 0 bytes .../main/res/values-night/themes (copy 1).xml | 16 - app/src/main/res/values/colors (copy 1).xml | 10 - app/src/main/res/values/strings (copy 1).xml | 3 - app/src/main/res/values/themes (copy 1).xml | 16 - .../main/res/xml/backup_rules (copy 1).xml | 13 - .../xml/data_extraction_rules (copy 1).xml | 19 - .../jmastermind/ExampleUnitTest (copy 1).java | 17 - 29 files changed, 1344 deletions(-) delete mode 100644 app/.gitignore (copy 1) delete mode 100644 app/build (copy 1).gradle delete mode 100644 app/proguard-rules (copy 1).pro delete mode 100644 app/src/androidTest/java/com/example/jmastermind/ExampleInstrumentedTest (copy 1).java delete mode 100644 app/src/main/AndroidManifest (copy 1).xml delete mode 100644 app/src/main/res/drawable-v24/ic_launcher_foreground (copy 1).xml delete mode 100644 app/src/main/res/drawable/ic_launcher_background (copy 1).xml delete mode 100644 app/src/main/res/layout/game (copy 1).xml delete mode 100644 app/src/main/res/layout/menu (copy 1).xml delete mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher (copy 1).xml delete mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round (copy 1).xml delete mode 100644 app/src/main/res/mipmap-anydpi-v33/ic_launcher (copy 1).xml delete mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher (copy 1).webp delete mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round (copy 1).webp delete mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher (copy 1).webp delete mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round (copy 1).webp delete mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher (copy 1).webp delete mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round (copy 1).webp delete mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher (copy 1).webp delete mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round (copy 1).webp delete mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher (copy 1).webp delete mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round (copy 1).webp delete mode 100644 app/src/main/res/values-night/themes (copy 1).xml delete mode 100644 app/src/main/res/values/colors (copy 1).xml delete mode 100644 app/src/main/res/values/strings (copy 1).xml delete mode 100644 app/src/main/res/values/themes (copy 1).xml delete mode 100644 app/src/main/res/xml/backup_rules (copy 1).xml delete mode 100644 app/src/main/res/xml/data_extraction_rules (copy 1).xml delete mode 100644 app/src/test/java/com/example/jmastermind/ExampleUnitTest (copy 1).java diff --git a/app/.gitignore (copy 1) b/app/.gitignore (copy 1) deleted file mode 100644 index 42afabf..0000000 --- a/app/.gitignore (copy 1) +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/app/build (copy 1).gradle b/app/build (copy 1).gradle deleted file mode 100644 index 5313a38..0000000 --- a/app/build (copy 1).gradle +++ /dev/null @@ -1,40 +0,0 @@ -plugins { - id 'com.android.application' -} - -android { - namespace 'com.example.jmastermind' - compileSdk 33 - - defaultConfig { - applicationId "com.example.jmastermind" - minSdk 19 - targetSdk 33 - versionCode 1 - versionName "1.0" - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - buildToolsVersion '33.0.0' -} - -dependencies { - - implementation 'androidx.appcompat:appcompat:1.6.1' - implementation 'com.google.android.material:material:1.8.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/app/proguard-rules (copy 1).pro b/app/proguard-rules (copy 1).pro deleted file mode 100644 index 481bb43..0000000 --- a/app/proguard-rules (copy 1).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/app/src/androidTest/java/com/example/jmastermind/ExampleInstrumentedTest (copy 1).java b/app/src/androidTest/java/com/example/jmastermind/ExampleInstrumentedTest (copy 1).java deleted file mode 100644 index 9c546fc..0000000 --- a/app/src/androidTest/java/com/example/jmastermind/ExampleInstrumentedTest (copy 1).java +++ /dev/null @@ -1,26 +0,0 @@ -package com.example.jmastermind; - -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 Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("com.example.jmastermind", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/app/src/main/AndroidManifest (copy 1).xml b/app/src/main/AndroidManifest (copy 1).xml deleted file mode 100644 index 0066848..0000000 --- a/app/src/main/AndroidManifest (copy 1).xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground (copy 1).xml b/app/src/main/res/drawable-v24/ic_launcher_foreground (copy 1).xml deleted file mode 100644 index 2b068d1..0000000 --- a/app/src/main/res/drawable-v24/ic_launcher_foreground (copy 1).xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background (copy 1).xml b/app/src/main/res/drawable/ic_launcher_background (copy 1).xml deleted file mode 100644 index 07d5da9..0000000 --- a/app/src/main/res/drawable/ic_launcher_background (copy 1).xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/game (copy 1).xml b/app/src/main/res/layout/game (copy 1).xml deleted file mode 100644 index 098313a..0000000 --- a/app/src/main/res/layout/game (copy 1).xml +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -