diff options
| author | maks <maks@jopek.eu> | 2022-10-26 12:54:16 +0200 |
|---|---|---|
| committer | maks <maks@jopek.eu> | 2022-10-26 12:54:16 +0200 |
| commit | 81ff51148575b9ad4bc16ebf18afa5819174c7e6 (patch) | |
| tree | 9a62c9b8bd8f7118716cafdf576acb7bd80bcfe0 /app | |
| download | applicationdevrification-81ff51148575b9ad4bc16ebf18afa5819174c7e6.tar.gz applicationdevrification-81ff51148575b9ad4bc16ebf18afa5819174c7e6.tar.zst applicationdevrification-81ff51148575b9ad4bc16ebf18afa5819174c7e6.zip | |
Initial commit, w/ v1.0.0
Diffstat (limited to 'app')
30 files changed, 797 insertions, 0 deletions
diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build
\ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..a07c03a --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,39 @@ +plugins { + id 'com.android.application' +} + +android { + namespace 'com.jopek.applicationdevrification' + compileSdk 32 + + defaultConfig { + applicationId "com.jopek.applicationdevrification" + minSdk 28 + targetSdk 32 + 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 + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'com.google.android.material:material:1.6.1' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' +}
\ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/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/app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java new file mode 100644 index 0000000..e8f3e38 --- /dev/null +++ b/app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.jopek.applicationdevrification; + +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.jopek.applicationdevrification", appContext.getPackageName()); + } +}
\ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..d869655 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,32 @@ +<?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" /> + + <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.ApplicationDeVérification" + 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> + + <meta-data + android:name="android.app.lib_name" + android:value="" /> + </activity> + </application> + +</manifest>
\ No newline at end of file diff --git a/app/src/main/java/com/jopek/applicationdevrification/MainActivity.java b/app/src/main/java/com/jopek/applicationdevrification/MainActivity.java new file mode 100644 index 0000000..e9c9603 --- /dev/null +++ b/app/src/main/java/com/jopek/applicationdevrification/MainActivity.java @@ -0,0 +1,208 @@ +package com.jopek.applicationdevrification; + +import static android.widget.ArrayAdapter.createFromResource; + +import android.content.Context; +import android.graphics.Color; +import android.os.Bundle; +import android.text.InputFilter; +import android.text.InputType; +import android.util.Log; +import android.view.View; +import android.view.inputmethod.InputMethodManager; +import android.widget.AdapterView; +import android.widget.ArrayAdapter; +import android.widget.Button; +import android.widget.EditText; +import android.widget.Spinner; +import android.widget.TextView; + +import androidx.appcompat.app.AppCompatActivity; + +import java.util.regex.Pattern; + +enum CodeOption { + zipCode, + address, + phone, + email, + pesel, + idcard, + nameNSurname, + password, + censorship, +} + +public class MainActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener { + ArrayAdapter<CharSequence> adapter; + EditText input; + TextView output; + CodeOption selOption; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + Spinner spinner = findViewById(R.id.spinner); + adapter = createFromResource(this, R.array.codes_array, android.R.layout.simple_spinner_item); + adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + spinner.setAdapter(adapter); + spinner.setOnItemSelectedListener(this); + + Button btn = findViewById(R.id.btnValidate); + btn.setOnClickListener(v -> validate()); + + input = findViewById(R.id.txtInput); + + output = findViewById(R.id.txtOutput); + } + + private void validate() { + String in = input.getText().toString(); + String gender = ""; + boolean result = false; + + if (in.length() == 0) { + result = false; + } else if (selOption == CodeOption.zipCode) { + Requests requests = new Requests(); + requests.get("https://jopek.eu/maks/get-city?code=" + in, txt -> { + validateResult(txt.length() != 0, ""); + }); + return; + } else if (selOption == CodeOption.address) { + Pattern p = Pattern.compile("^([a-ząśćżźńłęó]+ )+\\d+[a-z]?$", Pattern.CASE_INSENSITIVE); + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.phone) { + Pattern p; + if (in.charAt(0) == '+') { + p = Pattern.compile("\\+(\\d\\d?\\d?)\\d{9}", Pattern.CASE_INSENSITIVE); + } else { + p = Pattern.compile("\\d{7}(\\d{2})?", Pattern.CASE_INSENSITIVE); + } + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.email) { + Pattern p = Pattern.compile("^[a-zA-Z][\\w.]+[\\w]@[a-z]{2,}\\.[a-z]{2,}$"); + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.pesel) { + int lastDigit = Integer.parseInt(in.substring(10, 11)); + int a = Integer.parseInt(in.substring(0, 1)); + int b = Integer.parseInt(in.substring(1, 2)); + int c = Integer.parseInt(in.substring(2, 3)); + int d = Integer.parseInt(in.substring(3, 4)); + int e = Integer.parseInt(in.substring(4, 5)); + int f = Integer.parseInt(in.substring(5, 6)); + int g = Integer.parseInt(in.substring(6, 7)); + int h = Integer.parseInt(in.substring(7, 8)); + int i = Integer.parseInt(in.substring(8, 9)); + int j = Integer.parseInt(in.substring(9, 10)); + int sum = 9 * a + 7 * b + 3 * c + 1 * d + 9 * e + 7 * f + 3 * g + 1 * h + 9 * i + 7 * j; + result = sum % 10 == lastDigit; + if (result) { + int plec = Integer.parseInt(in.substring(9, 10)); + if (plec % 2 == 0 || plec == 0) { + gender = "K"; + } else { + gender = "M"; + } + } + } else if (selOption == CodeOption.idcard) { + Pattern p = Pattern.compile(".*\\d.*"); + result = p.matcher(in).matches(); + if (result) { + p = Pattern.compile("^[a-z][a-z\\d]+$", Pattern.CASE_INSENSITIVE); + result = p.matcher(in).matches(); + } + } else if (selOption == CodeOption.nameNSurname) { + Pattern p = Pattern.compile("^[a-z]+ [a-z]+(-[a-z]+)?$", Pattern.CASE_INSENSITIVE); + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.password) { + result = in.matches(".*[A-Z].*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".*[a-z].*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".*([^\\w\\s]|_).*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".*\\d.*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".{7,}"); + Log.d("maks", "validate: " + result); + } else if (selOption == CodeOption.censorship) { + String[] illegal = new String[]{"wtf", "rabarbar", "kobieta", "bezalkoholowe", "kamienskiego"}; + result = true; + for (String ill : illegal) { + result = result && !in.matches(".*" + ill + ".*"); + } + } + + validateResult(result, gender); + } + + private void validateResult(boolean win, String gender) { + View view = this.getCurrentFocus(); + if (view != null) { + InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(view.getWindowToken(), 0); + } + + if (win) { + output.setTextColor(Color.rgb(0, 255, 0)); + if (gender.length() == 0) + output.setText("CORRECT"); + else + output.setText("CORRECT (" + gender + ")"); + } else { + output.setTextColor(Color.rgb(255, 0, 0)); + output.setText("WRONG"); + } + } + + @Override + public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { + CharSequence selectedOption = adapter.getItem(position); + if ("zip-code".contentEquals(selectedOption)) { + selOption = CodeOption.zipCode; + } else if ("address".contentEquals(selectedOption)) { + selOption = CodeOption.address// input.setMinLines(1); +// input.setLines(2); +// input.setMaxLines(10); +; + } else if ("phone".contentEquals(selectedOption)) { + selOption = CodeOption.phone; + } else if ("email".contentEquals(selectedOption)) { + selOption = CodeOption.email; + } else if ("pesel".contentEquals(selectedOption)) { + selOption = CodeOption.pesel; + } else if ("idcard".contentEquals(selectedOption)) { + selOption = CodeOption.idcard; + } else if ("name&surname".contentEquals(selectedOption)) { + selOption = CodeOption.nameNSurname; + } else if ("password".contentEquals(selectedOption)) { + selOption = CodeOption.password; + } else if ("censorship".contentEquals(selectedOption)) { + selOption = CodeOption.censorship; + } + + input.setFilters(new InputFilter[]{}); + input.setInputType(InputType.TYPE_CLASS_TEXT); + input.setSingleLine(true); + if (selOption == CodeOption.zipCode) { + input.setFilters(new InputFilter[]{new InputFilter.LengthFilter(5)}); + input.setInputType(InputType.TYPE_CLASS_NUMBER); + } else if (selOption == CodeOption.phone) { + input.setInputType(InputType.TYPE_CLASS_PHONE); + } else if (selOption == CodeOption.pesel) { + input.setFilters(new InputFilter[]{new InputFilter.LengthFilter(11)}); + input.setInputType(InputType.TYPE_CLASS_NUMBER); + } else if (selOption == CodeOption.password || selOption == CodeOption.censorship) { + input.setInputType(InputType.TYPE_TEXT_FLAG_MULTI_LINE); + input.setSingleLine(false); + } + } + + @Override + public void onNothingSelected(AdapterView<?> parent) { + + } +}
\ No newline at end of file diff --git a/app/src/main/java/com/jopek/applicationdevrification/Requests.java b/app/src/main/java/com/jopek/applicationdevrification/Requests.java new file mode 100644 index 0000000..3f494b6 --- /dev/null +++ b/app/src/main/java/com/jopek/applicationdevrification/Requests.java @@ -0,0 +1,105 @@ +package com.jopek.applicationdevrification; + +import android.os.AsyncTask; + +import org.json.JSONException; +import org.json.JSONObject; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.net.URL; +import java.util.function.Consumer; + +//class RequestImage extends AsyncTask<String, Void, Bitmap> { +// ImageView bmImage; +// Consumer<Bitmap> cb; +// +// public void setRemoteSrc(ImageView bmImage, String url) { +// this.bmImage = bmImage; +// this.execute(url); +// } +// +// public void getBitmap(String url, Consumer<Bitmap> cb) { +// this.cb = cb; +// this.execute(url); +// } +// +// protected Bitmap doInBackground(String... urls) { +// String urldisplay = urls[0]; +// Bitmap bmp = null; +// try { +// InputStream in = new URL(urldisplay).openStream(); +// bmp = BitmapFactory.decodeStream(in); +// } catch (Exception e) { +// e.printStackTrace(); +// } +// return bmp; +// } +// +// protected void onPostExecute(Bitmap result) { +// if (cb == null) +// bmImage.setImageBitmap(result); +// else cb.accept(result); +// } +//} + +public class Requests extends AsyncTask<String, Integer, String> { + Consumer<String> cb; + Consumer<JSONObject> cbJson; + boolean retJson = false; + + public void get(String url, Consumer<String> cb) { + this.cb = cb; + this.execute(url); + } + + public void getJson(String url, Consumer<JSONObject> cb) { + this.cbJson = cb; + this.retJson = true; + this.execute(url); + } + + protected String doInBackground(String... urls) { + InputStream in = null; + try { + URL url = new URL(urls[0]); + in = url.openStream(); + BufferedReader rd = new BufferedReader(new InputStreamReader(in)); + String content = "", line; + while ((line = rd.readLine()) != null) { + content += line + "\n"; + } + in.close(); + return content; + } catch (IOException exception) { + if (in != null) { + try { + in.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + exception.printStackTrace(); + return "ERROR"; + } + } + + protected void onProgressUpdate(Integer... progress) { + } + + protected void onPostExecute(String result) { + // this is executed on the main thread after the process is over + // update your UI here + if (retJson) { + try { + cbJson.accept(new JSONObject(result)); + } catch (JSONException e) { + e.printStackTrace(); + } + } else { + cb.accept(result); + } + } +} diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ +<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/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ +<?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/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..0d2776a --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + tools:context=".MainActivity"> + + <TextView + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center" + android:textAlignment="center" + android:textSize="30sp" + android:textColor="#516060" + android:layout_weight="4" + android:text="Value for verification" /> + <Spinner + android:layout_weight="4" + android:id="@+id/spinner" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + <EditText + android:id="@+id/txtInput" + android:hint="Entry value" + android:layout_weight="4" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + <Button + android:id="@+id/btnValidate" + android:text="VALIDATE" + android:layout_weight="4" + android:textSize="30sp" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + <TextView + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_weight="2" + android:gravity="center" + android:textSize="30sp" + android:textAlignment="center" + android:id="@+id/txtOutput" /> + +</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ +<?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" /> +</adaptive-icon>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ +<?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" /> +</adaptive-icon>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp Binary files differnew file mode 100644 index 0000000..c209e78 --- /dev/null +++ b/app/src/main/res/mipmap-hdpi/ic_launcher.webp diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp Binary files differnew file mode 100644 index 0000000..b2dfe3d --- /dev/null +++ b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp Binary files differnew file mode 100644 index 0000000..4f0f1d6 --- /dev/null +++ b/app/src/main/res/mipmap-mdpi/ic_launcher.webp diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp Binary files differnew file mode 100644 index 0000000..62b611d --- /dev/null +++ b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp Binary files differnew file mode 100644 index 0000000..948a307 --- /dev/null +++ b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp Binary files differnew file mode 100644 index 0000000..1b9a695 --- /dev/null +++ b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp Binary files differnew file mode 100644 index 0000000..28d4b77 --- /dev/null +++ b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp Binary files differnew file mode 100644 index 0000000..9287f50 --- /dev/null +++ b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp Binary files differnew file mode 100644 index 0000000..aa7d642 --- /dev/null +++ b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp Binary files differnew file mode 100644 index 0000000..9126ae3 --- /dev/null +++ b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..4fad0e6 --- /dev/null +++ b/app/src/main/res/values-night/themes.xml @@ -0,0 +1,16 @@ +<resources xmlns:tools="http://schemas.android.com/tools"> + <!-- Base application theme. --> + <style name="Theme.ApplicationDeVérification" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> + <!-- Primary brand color. --> + <item name="colorPrimary">@color/purple_200</item> + <item name="colorPrimaryVariant">@color/purple_700</item> + <item name="colorOnPrimary">@color/black</item> + <!-- Secondary brand color. --> + <item name="colorSecondary">@color/teal_200</item> + <item name="colorSecondaryVariant">@color/teal_200</item> + <item name="colorOnSecondary">@color/black</item> + <!-- Status bar color. --> + <item name="android:statusBarColor">?attr/colorPrimaryVariant</item> + <!-- Customize your theme here. --> + </style> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..8cd5293 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="purple_200">#FFBB86FC</color> + <color name="purple_500">#FF6200EE</color> + <color name="purple_700">#FF3700B3</color> + <color name="teal_200">#FF03DAC5</color> + <color name="teal_700">#FF018786</color> + <color name="black">#FF000000</color> + <color name="white">#FFFFFFFF</color> + <color name="green">#00FF00</color> + <color name="red">#FF0000</color> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/spinner_values.xml b/app/src/main/res/values/spinner_values.xml new file mode 100644 index 0000000..4930a44 --- /dev/null +++ b/app/src/main/res/values/spinner_values.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string-array name="codes_array"> + <item>zip-code</item> + <item>address</item> + <item>phone</item> + <item>email</item> + <item>pesel</item> + <item>idcard</item> + <item>name&surname</item> + <item>password </item> + <item>censorship</item> + </string-array> +</resources> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..3384bd2 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ +<resources> + <string name="app_name">application de vérification</string> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..fa9f7ee --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,16 @@ +<resources xmlns:tools="http://schemas.android.com/tools"> + <!-- Base application theme. --> + <style name="Theme.ApplicationDeVérification" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> + <!-- Primary brand color. --> + <item name="colorPrimary">@color/purple_500</item> + <item name="colorPrimaryVariant">@color/purple_700</item> + <item name="colorOnPrimary">@color/white</item> + <!-- Secondary brand color. --> + <item name="colorSecondary">@color/teal_200</item> + <item name="colorSecondaryVariant">@color/teal_700</item> + <item name="colorOnSecondary">@color/black</item> + <!-- Status bar color. --> + <item name="android:statusBarColor">?attr/colorPrimaryVariant</item> + <!-- Customize your theme here. --> + </style> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml new file mode 100644 index 0000000..fa0f996 --- /dev/null +++ b/app/src/main/res/xml/backup_rules.xml @@ -0,0 +1,13 @@ +<?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/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml new file mode 100644 index 0000000..9ee9997 --- /dev/null +++ b/app/src/main/res/xml/data_extraction_rules.xml @@ -0,0 +1,19 @@ +<?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/app/src/test/java/com/jopek/applicationdevrification/ExampleUnitTest.java b/app/src/test/java/com/jopek/applicationdevrification/ExampleUnitTest.java new file mode 100644 index 0000000..ff9b787 --- /dev/null +++ b/app/src/test/java/com/jopek/applicationdevrification/ExampleUnitTest.java @@ -0,0 +1,17 @@ +package com.jopek.applicationdevrification; + +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 |
